plugin/reload: Add metrics (#2922)

* Issue 2920
- Add failed reload counter metrics

* typo fix

* Requested Changes
This commit is contained in:
Anshul Sharma 2019-06-26 09:38:46 +03:00 committed by Miek Gieben
parent cd176f859b
commit ad352cee88
3 changed files with 24 additions and 0 deletions

17
plugin/reload/metrics.go Normal file
View file

@ -0,0 +1,17 @@
package reload
import (
"github.com/coredns/coredns/plugin"
"github.com/prometheus/client_golang/prometheus"
)
// Metrics for the reload plugin
var (
FailedCount = prometheus.NewCounter(prometheus.CounterOpts{
Namespace: plugin.Namespace,
Subsystem: "reload",
Name: "failed_count_total",
Help: "Counter of the number of failed reload attempts.",
})
)