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.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/plugin/acl/metrics.go b/plugin/acl/metrics.go
new file mode 100644
index 000000000..442ea2374
--- /dev/null
+++ b/plugin/acl/metrics.go
@@ -0,0 +1,24 @@
+package acl
+
+import (
+ "github.com/coredns/coredns/plugin"
+
+ "github.com/prometheus/client_golang/prometheus"
+)
+
+var (
+ // RequestBlockCount is the number of DNS requests being blocked.
+ RequestBlockCount = prometheus.NewCounterVec(prometheus.CounterOpts{
+ Namespace: plugin.Namespace,
+ Subsystem: "dns",
+ Name: "request_block_count_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",
+ Help: "Counter of DNS requests being allowed.",
+ }, []string{"server"})
+)