aboutsummaryrefslogtreecommitdiff
path: root/middleware/dnssec/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'middleware/dnssec/handler.go')
-rw-r--r--middleware/dnssec/handler.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/middleware/dnssec/handler.go b/middleware/dnssec/handler.go
index 1ea981a73..2b7730083 100644
--- a/middleware/dnssec/handler.go
+++ b/middleware/dnssec/handler.go
@@ -43,15 +43,15 @@ var (
cacheSize = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Namespace: middleware.Namespace,
Subsystem: subsystem,
- Name: "size_guage",
- Help: "Gauge of number of elements in the cache.",
+ Name: "cache_size",
+ Help: "The number of elements in the dnssec cache.",
}, []string{"type"})
cacheCapacity = prometheus.NewGaugeVec(prometheus.GaugeOpts{
Namespace: middleware.Namespace,
Subsystem: subsystem,
- Name: "capacity_gauge",
- Help: "Gauge of cache's capacity.",
+ Name: "cache_capacity",
+ Help: "The dnssec cache's capacity.",
}, []string{"type"})
)