diff options
Diffstat (limited to 'plugin/forward/metrics.go')
-rw-r--r-- | plugin/forward/metrics.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin/forward/metrics.go b/plugin/forward/metrics.go index da0905525..246dc6500 100644 --- a/plugin/forward/metrics.go +++ b/plugin/forward/metrics.go @@ -9,13 +9,14 @@ import ( // Variables declared for monitoring. var ( - HealthcheckBrokenCount = promauto.NewCounter(prometheus.CounterOpts{ + healthcheckBrokenCount = promauto.NewCounter(prometheus.CounterOpts{ Namespace: plugin.Namespace, Subsystem: "forward", Name: "healthcheck_broken_total", Help: "Counter of the number of complete failures of the healthchecks.", }) - MaxConcurrentRejectCount = promauto.NewCounter(prometheus.CounterOpts{ + + maxConcurrentRejectCount = promauto.NewCounter(prometheus.CounterOpts{ Namespace: plugin.Namespace, Subsystem: "forward", Name: "max_concurrent_rejects_total", |