-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
Description
Surely it's a typo that some metrics have "hertz" suffix, and others "hrts"?
node_exporter/collector/cpufreq_linux.go
Lines 63 to 77 in eeeae46
| scalingFreq: prometheus.NewDesc( | |
| prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "scaling_frequency_hertz"), | |
| "Current scaled cpu thread frequency in hertz.", | |
| []string{"cpu"}, nil, | |
| ), | |
| scalingFreqMin: prometheus.NewDesc( | |
| prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "scaling_frequency_min_hrts"), | |
| "Minimum scaled cpu thread frequency in hertz.", | |
| []string{"cpu"}, nil, | |
| ), | |
| scalingFreqMax: prometheus.NewDesc( | |
| prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "scaling_frequency_max_hrts"), | |
| "Maximum scaled cpu thread frequency in hertz.", | |
| []string{"cpu"}, nil, | |
| ), |
Reactions are currently unavailable