diff --git a/Makefile b/Makefile index d9b606d..fc007a5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Needs to be defined before including Makefile.common to auto-generate targets DOCKER_ARCHS ?= amd64 arm64 ppc64le DOCKER_REPO ?= treydock -GOLANGCI_LINT_VERSION ?= v1.44.2 +GOLANGCI_LINT_VERSION ?= v1.50.1 include Makefile.common diff --git a/README.md b/README.md index ea35ba6..ed21aa4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![GitHub All Releases](https://img.shields.io/github/downloads/treydock/cgroup_exporter/total) [![codecov](https://codecov.io/gh/treydock/cgroup_exporter/branch/master/graph/badge.svg)](https://codecov.io/gh/treydock/cgroup_exporter) -# Check mount Prometheus exporter +# cgroup Prometheus exporter The `cgroup_exporter` produces metrics from cgroups. diff --git a/cgroup_exporter.go b/cgroup_exporter.go index 3b5aa2d..bbbe767 100644 --- a/cgroup_exporter.go +++ b/cgroup_exporter.go @@ -328,17 +328,27 @@ func (e *Exporter) getMetrics(name string, pids map[string][]int) (CgroupMetric, return metric, err } stats, _ := ctrl.Stat(cgroups.IgnoreNotExist) - metric.cpuUser = float64(stats.CPU.Usage.User) / 1000000000.0 - metric.cpuSystem = float64(stats.CPU.Usage.Kernel) / 1000000000.0 - metric.cpuTotal = float64(stats.CPU.Usage.Total) / 1000000000.0 - metric.memoryRSS = float64(stats.Memory.TotalRSS) - metric.memoryCache = float64(stats.Memory.TotalCache) - metric.memoryUsed = float64(stats.Memory.Usage.Usage) - metric.memoryTotal = float64(stats.Memory.Usage.Limit) - metric.memoryFailCount = float64(stats.Memory.Usage.Failcnt) - metric.memswUsed = float64(stats.Memory.Swap.Usage) - metric.memswTotal = float64(stats.Memory.Swap.Limit) - metric.memswFailCount = float64(stats.Memory.Swap.Failcnt) + if stats.CPU != nil { + if stats.CPU.Usage != nil { + metric.cpuUser = float64(stats.CPU.Usage.User) / 1000000000.0 + metric.cpuSystem = float64(stats.CPU.Usage.Kernel) / 1000000000.0 + metric.cpuTotal = float64(stats.CPU.Usage.Total) / 1000000000.0 + } + } + if stats.Memory != nil { + metric.memoryRSS = float64(stats.Memory.TotalRSS) + metric.memoryCache = float64(stats.Memory.TotalCache) + if stats.Memory.Usage != nil { + metric.memoryUsed = float64(stats.Memory.Usage.Usage) + metric.memoryTotal = float64(stats.Memory.Usage.Limit) + metric.memoryFailCount = float64(stats.Memory.Usage.Failcnt) + } + if stats.Memory.Swap != nil { + metric.memswUsed = float64(stats.Memory.Swap.Usage) + metric.memswTotal = float64(stats.Memory.Swap.Limit) + metric.memswFailCount = float64(stats.Memory.Swap.Failcnt) + } + } if cpus, err := getCPUs(name, e.logger); err == nil { metric.cpus = len(cpus) metric.cpu_list = strings.Join(cpus, ",")