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.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugin/acl/metrics.go b/plugin/acl/metrics.go
index 1f235b85b..719f24675 100644
--- a/plugin/acl/metrics.go
+++ b/plugin/acl/metrics.go
@@ -10,15 +10,15 @@ var (
// RequestBlockCount is the number of DNS requests being blocked.
RequestBlockCount = prometheus.NewCounterVec(prometheus.CounterOpts{
Namespace: plugin.Namespace,
- Subsystem: "dns",
- Name: "acl_blocked_requests_total",
+ Subsystem: pluginName,
+ Name: "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: "acl_allowed_requests_total",
+ Subsystem: pluginName,
+ Name: "allowed_requests_total",
Help: "Counter of DNS requests being allowed.",
}, []string{"server"})
)