2017-08-23 18:46:03 +00:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
2018-11-14 09:18:03 +00:00
|
|
|
"context"
|
2017-08-23 18:46:03 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
kitlog "github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/metrics/statsd"
|
2020-09-16 13:46:04 +00:00
|
|
|
"github.com/traefik/traefik/v2/pkg/log"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/safe"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/types"
|
2017-08-23 18:46:03 +00:00
|
|
|
)
|
|
|
|
|
2020-07-07 12:42:03 +00:00
|
|
|
var (
|
|
|
|
statsdClient *statsd.Statsd
|
|
|
|
statsdTicker *time.Ticker
|
|
|
|
)
|
2017-08-23 18:46:03 +00:00
|
|
|
|
2017-11-08 14:14:03 +00:00
|
|
|
const (
|
2019-07-18 19:36:05 +00:00
|
|
|
statsdMetricsServiceReqsName = "service.request.total"
|
|
|
|
statsdMetricsServiceLatencyName = "service.request.duration"
|
|
|
|
statsdRetriesTotalName = "service.retries.total"
|
2018-02-21 09:04:03 +00:00
|
|
|
statsdConfigReloadsName = "config.reload.total"
|
|
|
|
statsdConfigReloadsFailureName = statsdConfigReloadsName + ".failure"
|
|
|
|
statsdLastConfigReloadSuccessName = "config.reload.lastSuccessTimestamp"
|
|
|
|
statsdLastConfigReloadFailureName = "config.reload.lastFailureTimestamp"
|
2019-07-18 19:36:05 +00:00
|
|
|
statsdEntryPointReqsName = "entrypoint.request.total"
|
|
|
|
statsdEntryPointReqDurationName = "entrypoint.request.duration"
|
|
|
|
statsdEntryPointOpenConnsName = "entrypoint.connections.open"
|
|
|
|
statsdOpenConnsName = "service.connections.open"
|
|
|
|
statsdServerUpName = "service.server.up"
|
2017-11-08 14:14:03 +00:00
|
|
|
)
|
|
|
|
|
2017-08-23 18:46:03 +00:00
|
|
|
// RegisterStatsd registers the metrics pusher if this didn't happen yet and creates a statsd Registry instance.
|
2018-11-14 09:18:03 +00:00
|
|
|
func RegisterStatsd(ctx context.Context, config *types.Statsd) Registry {
|
2019-11-12 17:18:04 +00:00
|
|
|
// just to be sure there is a prefix defined
|
|
|
|
if config.Prefix == "" {
|
|
|
|
config.Prefix = "traefik"
|
|
|
|
}
|
|
|
|
|
|
|
|
statsdClient = statsd.New(config.Prefix+".", kitlog.LoggerFunc(func(keyvals ...interface{}) error {
|
|
|
|
log.WithoutContext().WithField(log.MetricsProviderName, "statsd").Info(keyvals)
|
|
|
|
return nil
|
|
|
|
}))
|
|
|
|
|
2017-08-23 18:46:03 +00:00
|
|
|
if statsdTicker == nil {
|
2018-11-14 09:18:03 +00:00
|
|
|
statsdTicker = initStatsdTicker(ctx, config)
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 19:36:05 +00:00
|
|
|
registry := &standardRegistry{
|
|
|
|
configReloadsCounter: statsdClient.NewCounter(statsdConfigReloadsName, 1.0),
|
|
|
|
configReloadsFailureCounter: statsdClient.NewCounter(statsdConfigReloadsFailureName, 1.0),
|
|
|
|
lastConfigReloadSuccessGauge: statsdClient.NewGauge(statsdLastConfigReloadSuccessName),
|
|
|
|
lastConfigReloadFailureGauge: statsdClient.NewGauge(statsdLastConfigReloadFailureName),
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
2019-07-18 19:36:05 +00:00
|
|
|
|
|
|
|
if config.AddEntryPointsLabels {
|
|
|
|
registry.epEnabled = config.AddEntryPointsLabels
|
|
|
|
registry.entryPointReqsCounter = statsdClient.NewCounter(statsdEntryPointReqsName, 1.0)
|
2020-03-05 14:10:07 +00:00
|
|
|
registry.entryPointReqDurationHistogram, _ = NewHistogramWithScale(statsdClient.NewTiming(statsdEntryPointReqDurationName, 1.0), time.Millisecond)
|
2019-07-18 19:36:05 +00:00
|
|
|
registry.entryPointOpenConnsGauge = statsdClient.NewGauge(statsdEntryPointOpenConnsName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.AddServicesLabels {
|
|
|
|
registry.svcEnabled = config.AddServicesLabels
|
|
|
|
registry.serviceReqsCounter = statsdClient.NewCounter(statsdMetricsServiceReqsName, 1.0)
|
2020-03-05 14:10:07 +00:00
|
|
|
registry.serviceReqDurationHistogram, _ = NewHistogramWithScale(statsdClient.NewTiming(statsdMetricsServiceLatencyName, 1.0), time.Millisecond)
|
2019-07-18 19:36:05 +00:00
|
|
|
registry.serviceRetriesCounter = statsdClient.NewCounter(statsdRetriesTotalName, 1.0)
|
|
|
|
registry.serviceOpenConnsGauge = statsdClient.NewGauge(statsdOpenConnsName)
|
|
|
|
registry.serviceServerUpGauge = statsdClient.NewGauge(statsdServerUpName)
|
|
|
|
}
|
|
|
|
|
|
|
|
return registry
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 10:06:07 +00:00
|
|
|
// initStatsdTicker initializes metrics pusher and creates a statsdClient if not created already.
|
2018-11-14 09:18:03 +00:00
|
|
|
func initStatsdTicker(ctx context.Context, config *types.Statsd) *time.Ticker {
|
2017-08-23 18:46:03 +00:00
|
|
|
address := config.Address
|
|
|
|
if len(address) == 0 {
|
|
|
|
address = "localhost:8125"
|
|
|
|
}
|
|
|
|
|
2019-06-17 09:48:05 +00:00
|
|
|
report := time.NewTicker(time.Duration(config.PushInterval))
|
2017-08-23 18:46:03 +00:00
|
|
|
|
|
|
|
safe.Go(func() {
|
2019-07-18 19:36:05 +00:00
|
|
|
statsdClient.SendLoop(ctx, report.C, "udp", address)
|
2017-08-23 18:46:03 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
return report
|
|
|
|
}
|
|
|
|
|
2020-05-11 10:06:07 +00:00
|
|
|
// StopStatsd stops internal statsdTicker which controls the pushing of metrics to StatsD Agent and resets it to `nil`.
|
2017-08-23 18:46:03 +00:00
|
|
|
func StopStatsd() {
|
|
|
|
if statsdTicker != nil {
|
|
|
|
statsdTicker.Stop()
|
|
|
|
}
|
|
|
|
statsdTicker = nil
|
|
|
|
}
|