From eb5a04e1be908a59849668bd54fa6eeaf68f898b Mon Sep 17 00:00:00 2001 From: Trey Dockendorf Date: Wed, 12 Feb 2020 12:49:06 -0500 Subject: [PATCH] Add swap metrics --- cgroup_exporter.go | 14 +++++++++++++- cgroup_exporter_test.go | 6 ++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/cgroup_exporter.go b/cgroup_exporter.go index 85e3106..23f5368 100644 --- a/cgroup_exporter.go +++ b/cgroup_exporter.go @@ -50,10 +50,12 @@ type CgroupMetric struct { cpuSystem float64 cpuTotal float64 cpus int - memoryUsed float64 uid string username string + memoryUsed float64 memoryTotal float64 + swapUsed float64 + swapTotal float64 } type Exporter struct { @@ -64,6 +66,8 @@ type Exporter struct { cpus *prometheus.Desc memoryUsed *prometheus.Desc memoryTotal *prometheus.Desc + swapUsed *prometheus.Desc + swapTotal *prometheus.Desc userslice *prometheus.Desc success *prometheus.Desc } @@ -153,6 +157,10 @@ func NewExporter(paths []string) *Exporter { "Memory used in bytes", []string{"cgroup"}, nil), memoryTotal: prometheus.NewDesc(prometheus.BuildFQName(namespace, "memory", "total_bytes"), "Memory total given to cgroup in bytes", []string{"cgroup"}, nil), + swapUsed: prometheus.NewDesc(prometheus.BuildFQName(namespace, "swap", "used_bytes"), + "Swap used in bytes", []string{"cgroup"}, nil), + swapTotal: prometheus.NewDesc(prometheus.BuildFQName(namespace, "swap", "total_bytes"), + "Swap total given to cgroup in bytes", []string{"cgroup"}, nil), userslice: prometheus.NewDesc(prometheus.BuildFQName(namespace, "userslice", "info"), "User slice information", []string{"cgroup", "username", "uid"}, nil), success: prometheus.NewDesc(prometheus.BuildFQName(namespace, "exporter", "success"), @@ -196,6 +204,8 @@ func (e *Exporter) collect() ([]CgroupMetric, error) { metric.cpuTotal = float64(stats.CPU.Usage.Total) / 1000000000.0 metric.memoryUsed = float64(stats.Memory.Usage.Usage) metric.memoryTotal = float64(stats.Memory.Usage.Limit) + metric.swapUsed = float64(stats.Memory.Swap.Usage) + metric.swapTotal = float64(stats.Memory.Swap.Limit) if cpus, err := getCPUs(name); err == nil { metric.cpus = cpus } @@ -243,6 +253,8 @@ func (e *Exporter) Collect(ch chan<- prometheus.Metric) { ch <- prometheus.MustNewConstMetric(e.cpus, prometheus.GaugeValue, float64(m.cpus), m.name) ch <- prometheus.MustNewConstMetric(e.memoryUsed, prometheus.GaugeValue, m.memoryUsed, m.name) ch <- prometheus.MustNewConstMetric(e.memoryTotal, prometheus.GaugeValue, m.memoryTotal, m.name) + ch <- prometheus.MustNewConstMetric(e.swapUsed, prometheus.GaugeValue, m.swapUsed, m.name) + ch <- prometheus.MustNewConstMetric(e.swapTotal, prometheus.GaugeValue, m.swapTotal, m.name) if m.username != "" { ch <- prometheus.MustNewConstMetric(e.userslice, prometheus.GaugeValue, 1, m.name, m.username, m.uid) } diff --git a/cgroup_exporter_test.go b/cgroup_exporter_test.go index 70c7b1a..0a5c4c7 100644 --- a/cgroup_exporter_test.go +++ b/cgroup_exporter_test.go @@ -75,4 +75,10 @@ func TestCollectUserSlice(t *testing.T) { if val := metrics[0].memoryTotal; val != 68719476736 { t.Errorf("Unexpected value for memoryTotal, got %v", val) } + if val := metrics[0].swapUsed; val != 8081408 { + t.Errorf("Unexpected value for swapUsed, got %v", val) + } + if val := metrics[0].swapTotal; val != 9223372036854771712 { + t.Errorf("Unexpected value for swapTotal, got %v", val) + } }