mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-23 20:36:21 +01:00
rapl_collector: fix issue with invalid metric name (#2299)
Signed-off-by: Andrei Neagoe <3854672+aneagoe@users.noreply.github.com>
This commit is contained in:
parent
da8b0f694c
commit
0e320e725b
@ -80,7 +80,7 @@ func (c *raplCollector) Update(ch chan<- prometheus.Metric) error {
|
||||
index := strconv.Itoa(rz.Index)
|
||||
|
||||
descriptor := prometheus.NewDesc(
|
||||
prometheus.BuildFQName(namespace, "rapl", rz.Name+"_joules_total"),
|
||||
prometheus.BuildFQName(namespace, "rapl", SanitizeMetricName(rz.Name+"_joules_total")),
|
||||
"Current RAPL "+rz.Name+" value in joules",
|
||||
[]string{"index", "path"}, nil,
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user