Avoid null references during what appears to be race condition (#21)
This commit is contained in:
parent
9f99aa2e82
commit
7fe1ae6685
2
Makefile
2
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
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||

|
||||
[](https://codecov.io/gh/treydock/cgroup_exporter)
|
||||
|
||||
# Check mount Prometheus exporter
|
||||
# cgroup Prometheus exporter
|
||||
|
||||
The `cgroup_exporter` produces metrics from cgroups.
|
||||
|
||||
|
|
|
@ -328,17 +328,27 @@ func (e *Exporter) getMetrics(name string, pids map[string][]int) (CgroupMetric,
|
|||
return metric, err
|
||||
}
|
||||
stats, _ := ctrl.Stat(cgroups.IgnoreNotExist)
|
||||
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, ",")
|
||||
|
|
Loading…
Reference in New Issue