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.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin/acl/metrics.go b/plugin/acl/metrics.go
index 76f30b5a6..04d728bcd 100644
--- a/plugin/acl/metrics.go
+++ b/plugin/acl/metrics.go
@@ -14,19 +14,19 @@ var (
Subsystem: pluginName,
Name: "blocked_requests_total",
Help: "Counter of DNS requests being blocked.",
- }, []string{"server", "zone"})
+ }, []string{"server", "zone", "view"})
// RequestFilterCount is the number of DNS requests being filtered.
RequestFilterCount = promauto.NewCounterVec(prometheus.CounterOpts{
Namespace: plugin.Namespace,
Subsystem: pluginName,
Name: "filtered_requests_total",
Help: "Counter of DNS requests being filtered.",
- }, []string{"server", "zone"})
+ }, []string{"server", "zone", "view"})
// RequestAllowCount is the number of DNS requests being Allowed.
RequestAllowCount = promauto.NewCounterVec(prometheus.CounterOpts{
Namespace: plugin.Namespace,
Subsystem: pluginName,
Name: "allowed_requests_total",
Help: "Counter of DNS requests being allowed.",
- }, []string{"server"})
+ }, []string{"server", "view"})
)