Avoid possible nil pointer errors (#24)

This commit is contained in:
treydock 2023-05-12 15:58:16 -04:00 committed by GitHub
parent 4f5fed9945
commit 640ac7ef56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -329,7 +329,15 @@ func (e *Exporter) getMetrics(name string, pids map[string][]int) (CgroupMetric,
metric.err = true
return metric, err
}
stats, _ := ctrl.Stat(cgroups.IgnoreNotExist)
stats, err := ctrl.Stat(cgroups.IgnoreNotExist)
if err != nil {
level.Error(e.logger).Log("msg", "Failed to stat cgroups", "path", name, "err", err)
return metric, err
}
if stats == nil {
level.Error(e.logger).Log("msg", "Cgroup stats are nil", "path", name)
return metric, err
}
if stats.CPU != nil {
if stats.CPU.Usage != nil {
metric.cpuUser = float64(stats.CPU.Usage.User) / 1000000000.0