aboutsummaryrefslogtreecommitdiff
path: root/plugin/acl/metrics.go
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/acl/metrics.go')
-rw-r--r--plugin/acl/metrics.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/acl/metrics.go b/plugin/acl/metrics.go
index 442ea2374..1f235b85b 100644
--- a/plugin/acl/metrics.go
+++ b/plugin/acl/metrics.go
@@ -11,14 +11,14 @@ var (
RequestBlockCount = prometheus.NewCounterVec(prometheus.CounterOpts{
Namespace: plugin.Namespace,
Subsystem: "dns",
- Name: "request_block_count_total",
+ Name: "acl_blocked_requests_total",
Help: "Counter of DNS requests being blocked.",
}, []string{"server", "zone"})
// RequestAllowCount is the number of DNS requests being Allowed.
RequestAllowCount = prometheus.NewCounterVec(prometheus.CounterOpts{
Namespace: plugin.Namespace,
Subsystem: "dns",
- Name: "request_allow_count_total",
+ Name: "acl_allowed_requests_total",
Help: "Counter of DNS requests being allowed.",
}, []string{"server"})
)