2017-10-15 19:39:24 +02:00
|
|
|
package autopath
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/coredns/coredns/plugin"
|
|
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2020-07-25 23:06:28 +08:00
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
2017-10-15 19:39:24 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
2020-03-31 14:07:36 +08:00
|
|
|
// autoPathCount is counter of successfully autopath-ed queries.
|
2020-07-25 23:06:28 +08:00
|
|
|
autoPathCount = promauto.NewCounterVec(prometheus.CounterOpts{
|
2017-10-15 19:39:24 +02:00
|
|
|
Namespace: plugin.Namespace,
|
|
|
|
|
Subsystem: "autopath",
|
2020-03-26 09:17:33 +01:00
|
|
|
Name: "success_total",
|
2017-10-15 19:39:24 +02:00
|
|
|
Help: "Counter of requests that did autopath.",
|
2018-04-25 16:43:57 +01:00
|
|
|
}, []string{"server"})
|
2017-10-15 19:39:24 +02:00
|
|
|
)
|