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"
|
|
|
|
|
2019-08-03 01:58:23 +00:00
|
|
|
"github.com/containous/traefik/v2/pkg/log"
|
|
|
|
"github.com/containous/traefik/v2/pkg/safe"
|
|
|
|
"github.com/containous/traefik/v2/pkg/types"
|
2017-08-23 18:46:03 +00:00
|
|
|
kitlog "github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/metrics/statsd"
|
|
|
|
)
|
|
|
|
|
|
|
|
var statsdClient = statsd.New("traefik.", kitlog.LoggerFunc(func(keyvals ...interface{}) error {
|
2018-11-14 09:18:03 +00:00
|
|
|
log.WithoutContext().WithField(log.MetricsProviderName, "statsd").Info(keyvals)
|
2017-08-23 18:46:03 +00:00
|
|
|
return nil
|
|
|
|
}))
|
|
|
|
|
|
|
|
var statsdTicker *time.Ticker
|
|
|
|
|
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 {
|
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)
|
|
|
|
registry.entryPointReqDurationHistogram = statsdClient.NewTiming(statsdEntryPointReqDurationName, 1.0)
|
|
|
|
registry.entryPointOpenConnsGauge = statsdClient.NewGauge(statsdEntryPointOpenConnsName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.AddServicesLabels {
|
|
|
|
registry.svcEnabled = config.AddServicesLabels
|
|
|
|
registry.serviceReqsCounter = statsdClient.NewCounter(statsdMetricsServiceReqsName, 1.0)
|
|
|
|
registry.serviceReqDurationHistogram = statsdClient.NewTiming(statsdMetricsServiceLatencyName, 1.0)
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// StopStatsd stops internal statsdTicker which controls the pushing of metrics to StatsD Agent and resets it to `nil`
|
|
|
|
func StopStatsd() {
|
|
|
|
if statsdTicker != nil {
|
|
|
|
statsdTicker.Stop()
|
|
|
|
}
|
|
|
|
statsdTicker = nil
|
|
|
|
}
|