fix: metric name

This commit is contained in:
Richard Ramos 2024-07-10 12:01:44 -04:00
parent 73779e074e
commit 20653b3d0d
No known key found for this signature in database
GPG Key ID: 1CE87DB518195760

View File

@ -8,7 +8,7 @@ import (
var missingMessages = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "missing_messages",
Name: "counter_missing_messages",
Help: "The messages identified as missing and the reason why they're missing",
},
[]string{"storenode", "status"},
@ -16,7 +16,7 @@ var missingMessages = prometheus.NewGaugeVec(
var storenodeUnavailable = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Name: "storenode_unavailable",
Name: "counter_storenode_unavailable",
Help: "Number of PubSub Topics node is subscribed to",
},
[]string{"storenode"},