Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
Miek Gieben
2020-01-19 08:45:03 +01:00
parent 9c75947393
commit 94cb764cb2
2 changed files with 3 additions and 3 deletions

View File

@@ -8,10 +8,10 @@ import (
var (
// ClusterGauge is the number of clusters we are currently tracking.
ClusterGauge = prometheus.NewGaugeVec(prometheus.GaugeOpts{
ClusterGauge = prometheus.NewGauge(prometheus.GaugeOpts{
Namespace: plugin.Namespace,
Subsystem: "traffic",
Name: "clusters_tracked",
Help: "Gauge of tracked clusters.",
}, []string{""})
})
)