After initial startup, see if prometheus is loaded and if so, register our metrics with it. Stop doing the init() func and just use the sync.Once so we don't double registrer our metrics.
21 lines
409 B
Go
21 lines
409 B
Go
package autopath
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/coredns/coredns/plugin"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
// Metrics for autopath.
|
|
var (
|
|
AutoPathCount = prometheus.NewCounterVec(prometheus.CounterOpts{
|
|
Namespace: plugin.Namespace,
|
|
Subsystem: "autopath",
|
|
Name: "success_count_total",
|
|
Help: "Counter of requests that did autopath.",
|
|
}, []string{})
|
|
)
|
|
|
|
var once sync.Once
|