Files
core/prometheus/disk.go
Jan Stabenow eb1cc37456 Add GoSRT & improvements (repo-merge)
Commits (Ingo Oppermann):
- Add experimental SRT connection stats and logs
- Hide /config/reload endpoint in reade-only mode
- Add SRT server
- Create v16 in go.mod
- Fix data races, tests, lint, and update dependencies
- Add trailing slash for routed directories (datarhei/restreamer#340)
- Allow relative URLs in content in static routes

Co-Authored-By: Ingo Oppermann <57445+ioppermann@users.noreply.github.com>
2022-06-23 22:13:58 +02:00

51 lines
1.2 KiB
Go

package prometheus
import (
"github.com/datarhei/core/v16/monitor/metric"
"github.com/prometheus/client_golang/prometheus"
)
type diskCollector struct {
core string
collector metric.Reader
diskTotalDesc *prometheus.Desc
diskUsageDesc *prometheus.Desc
}
func NewDiskCollector(core string, c metric.Reader) prometheus.Collector {
return &diskCollector{
core: core,
collector: c,
diskTotalDesc: prometheus.NewDesc(
"disk_total_bytes",
"disk_total_bytes",
[]string{"core", "path"}, nil),
diskUsageDesc: prometheus.NewDesc(
"disk_usage_bytes",
"disk_usage_bytes",
[]string{"core", "path"}, nil),
}
}
func (c *diskCollector) Describe(ch chan<- *prometheus.Desc) {
ch <- c.diskTotalDesc
ch <- c.diskUsageDesc
}
func (c *diskCollector) Collect(ch chan<- prometheus.Metric) {
metrics := c.collector.Collect([]metric.Pattern{
metric.NewPattern("disk_total"),
metric.NewPattern("disk_usage"),
})
for _, m := range metrics.Values("disk_total") {
ch <- prometheus.MustNewConstMetric(c.diskTotalDesc, prometheus.GaugeValue, m.Val(), c.core, m.L("path"))
}
for _, m := range metrics.Values("disk_usage") {
ch <- prometheus.MustNewConstMetric(c.diskUsageDesc, prometheus.GaugeValue, m.Val(), c.core, m.L("path"))
}
}