Browse Source

Fix debug log in cpu collector (#2857)

Signed-off-by: Simon Pasquier <spasquie@redhat.com>
pull/2858/head
Simon Pasquier 1 year ago committed by GitHub
parent
commit
12f1744e79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      collector/cpu_linux.go

2
collector/cpu_linux.go

@ -205,7 +205,7 @@ func (c *cpuCollector) updateInfo(ch chan<- prometheus.Metric) error {
cpuFreqEnabled, ok := collectorState["cpufreq"]
if !ok || cpuFreqEnabled == nil {
level.Debug(c.logger).Log("cpufreq key missing or nil value in collectorState map", err)
level.Debug(c.logger).Log("msg", "cpufreq key missing or nil value in collectorState map")
} else if !*cpuFreqEnabled {
for _, cpu := range info {
ch <- prometheus.MustNewConstMetric(c.cpuFrequencyHz,

Loading…
Cancel
Save