Use lowercase cpu label name in interrupts (#849)

To match other CPU related metric labels, use a lowercase named label.
This commit is contained in:
Ben Kochie 2018-03-08 15:04:49 +01:00 committed by GitHub
commit 7b720df1c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 226 additions and 226 deletions

View file

@ -28,7 +28,7 @@ import (
)
var (
interruptLabelNames = []string{"CPU", "type", "info", "devices"}
interruptLabelNames = []string{"cpu", "type", "info", "devices"}
)
func (c *interruptsCollector) Update(ch chan<- prometheus.Metric) (err error) {