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"
|
|
|
|
|
|
|
|
"github.com/go-kit/kit/metrics/dogstatsd"
|
2022-11-21 17:36:05 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/logs"
|
2020-09-16 13:46:04 +00:00
|
|
|
"github.com/traefik/traefik/v2/pkg/safe"
|
|
|
|
"github.com/traefik/traefik/v2/pkg/types"
|
2017-08-23 18:46:03 +00:00
|
|
|
)
|
|
|
|
|
2021-10-06 15:34:07 +00:00
|
|
|
var (
|
2022-06-29 08:34:08 +00:00
|
|
|
datadogClient *dogstatsd.Dogstatsd
|
|
|
|
datadogLoopCancelFunc context.CancelFunc
|
2021-10-06 15:34:07 +00:00
|
|
|
)
|
2017-08-23 18:46:03 +00:00
|
|
|
|
|
|
|
// Metric names consistent with https://github.com/DataDog/integrations-extras/pull/64
|
|
|
|
const (
|
2020-12-18 17:44:03 +00:00
|
|
|
ddConfigReloadsName = "config.reload.total"
|
|
|
|
ddConfigReloadsFailureTagName = "failure"
|
|
|
|
ddLastConfigReloadSuccessName = "config.reload.lastSuccessTimestamp"
|
|
|
|
ddLastConfigReloadFailureName = "config.reload.lastFailureTimestamp"
|
|
|
|
ddTLSCertsNotAfterTimestampName = "tls.certs.notAfterTimestamp"
|
2021-04-30 08:22:04 +00:00
|
|
|
|
|
|
|
ddEntryPointReqsName = "entrypoint.request.total"
|
|
|
|
ddEntryPointReqsTLSName = "entrypoint.request.tls.total"
|
|
|
|
ddEntryPointReqDurationName = "entrypoint.request.duration"
|
|
|
|
ddEntryPointOpenConnsName = "entrypoint.connections.open"
|
2022-09-12 15:10:09 +00:00
|
|
|
ddEntryPointReqsBytesName = "entrypoint.requests.bytes.total"
|
|
|
|
ddEntryPointRespsBytesName = "entrypoint.responses.bytes.total"
|
|
|
|
|
|
|
|
ddRouterReqsName = "router.request.total"
|
|
|
|
ddRouterReqsTLSName = "router.request.tls.total"
|
|
|
|
ddRouterReqsDurationName = "router.request.duration"
|
|
|
|
ddRouterOpenConnsName = "router.connections.open"
|
|
|
|
ddRouterReqsBytesName = "router.requests.bytes.total"
|
|
|
|
ddRouterRespsBytesName = "router.responses.bytes.total"
|
|
|
|
|
|
|
|
ddServiceReqsName = "service.request.total"
|
|
|
|
ddServiceReqsTLSName = "service.request.tls.total"
|
|
|
|
ddServiceReqsDurationName = "service.request.duration"
|
|
|
|
ddServiceRetriesName = "service.retries.total"
|
|
|
|
ddServiceOpenConnsName = "service.connections.open"
|
|
|
|
ddServiceServerUpName = "service.server.up"
|
|
|
|
ddServiceReqsBytesName = "service.requests.bytes.total"
|
|
|
|
ddServiceRespsBytesName = "service.responses.bytes.total"
|
2017-08-23 18:46:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterDatadog registers the metrics pusher if this didn't happen yet and creates a datadog Registry instance.
|
2019-09-02 10:18:04 +00:00
|
|
|
func RegisterDatadog(ctx context.Context, config *types.Datadog) Registry {
|
2022-06-29 08:34:08 +00:00
|
|
|
// Ensures there is only one DataDog client sending metrics at any given time.
|
|
|
|
StopDatadog()
|
|
|
|
|
2021-10-06 15:34:07 +00:00
|
|
|
// just to be sure there is a prefix defined
|
|
|
|
if config.Prefix == "" {
|
|
|
|
config.Prefix = defaultMetricsPrefix
|
|
|
|
}
|
|
|
|
|
2022-11-21 17:36:05 +00:00
|
|
|
datadogClient = dogstatsd.New(config.Prefix+".", logs.NewGoKitWrapper(log.Logger.With().Str(logs.MetricsProviderName, "datadog").Logger()))
|
2021-10-06 15:34:07 +00:00
|
|
|
|
2022-06-29 08:34:08 +00:00
|
|
|
initDatadogClient(ctx, config)
|
2017-08-23 18:46:03 +00:00
|
|
|
|
|
|
|
registry := &standardRegistry{
|
2020-12-18 17:44:03 +00:00
|
|
|
configReloadsCounter: datadogClient.NewCounter(ddConfigReloadsName, 1.0),
|
|
|
|
configReloadsFailureCounter: datadogClient.NewCounter(ddConfigReloadsName, 1.0).With(ddConfigReloadsFailureTagName, "true"),
|
|
|
|
lastConfigReloadSuccessGauge: datadogClient.NewGauge(ddLastConfigReloadSuccessName),
|
|
|
|
lastConfigReloadFailureGauge: datadogClient.NewGauge(ddLastConfigReloadFailureName),
|
|
|
|
tlsCertsNotAfterTimestampGauge: datadogClient.NewGauge(ddTLSCertsNotAfterTimestampName),
|
2019-07-18 19:36:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if config.AddEntryPointsLabels {
|
|
|
|
registry.epEnabled = config.AddEntryPointsLabels
|
|
|
|
registry.entryPointReqsCounter = datadogClient.NewCounter(ddEntryPointReqsName, 1.0)
|
2021-04-30 08:22:04 +00:00
|
|
|
registry.entryPointReqsTLSCounter = datadogClient.NewCounter(ddEntryPointReqsTLSName, 1.0)
|
2020-03-05 14:10:07 +00:00
|
|
|
registry.entryPointReqDurationHistogram, _ = NewHistogramWithScale(datadogClient.NewHistogram(ddEntryPointReqDurationName, 1.0), time.Second)
|
2019-07-18 19:36:05 +00:00
|
|
|
registry.entryPointOpenConnsGauge = datadogClient.NewGauge(ddEntryPointOpenConnsName)
|
2022-09-12 15:10:09 +00:00
|
|
|
registry.entryPointReqsBytesCounter = datadogClient.NewCounter(ddEntryPointReqsBytesName, 1.0)
|
|
|
|
registry.entryPointRespsBytesCounter = datadogClient.NewCounter(ddEntryPointRespsBytesName, 1.0)
|
2019-07-18 19:36:05 +00:00
|
|
|
}
|
|
|
|
|
2021-04-30 08:22:04 +00:00
|
|
|
if config.AddRoutersLabels {
|
|
|
|
registry.routerEnabled = config.AddRoutersLabels
|
2022-09-12 15:10:09 +00:00
|
|
|
registry.routerReqsCounter = datadogClient.NewCounter(ddRouterReqsName, 1.0)
|
|
|
|
registry.routerReqsTLSCounter = datadogClient.NewCounter(ddRouterReqsTLSName, 1.0)
|
|
|
|
registry.routerReqDurationHistogram, _ = NewHistogramWithScale(datadogClient.NewHistogram(ddRouterReqsDurationName, 1.0), time.Second)
|
2021-04-30 08:22:04 +00:00
|
|
|
registry.routerOpenConnsGauge = datadogClient.NewGauge(ddRouterOpenConnsName)
|
2022-09-12 15:10:09 +00:00
|
|
|
registry.routerReqsBytesCounter = datadogClient.NewCounter(ddRouterReqsBytesName, 1.0)
|
|
|
|
registry.routerRespsBytesCounter = datadogClient.NewCounter(ddRouterRespsBytesName, 1.0)
|
2021-04-30 08:22:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 19:36:05 +00:00
|
|
|
if config.AddServicesLabels {
|
|
|
|
registry.svcEnabled = config.AddServicesLabels
|
2022-09-12 15:10:09 +00:00
|
|
|
registry.serviceReqsCounter = datadogClient.NewCounter(ddServiceReqsName, 1.0)
|
|
|
|
registry.serviceReqsTLSCounter = datadogClient.NewCounter(ddServiceReqsTLSName, 1.0)
|
|
|
|
registry.serviceReqDurationHistogram, _ = NewHistogramWithScale(datadogClient.NewHistogram(ddServiceReqsDurationName, 1.0), time.Second)
|
|
|
|
registry.serviceRetriesCounter = datadogClient.NewCounter(ddServiceRetriesName, 1.0)
|
|
|
|
registry.serviceOpenConnsGauge = datadogClient.NewGauge(ddServiceOpenConnsName)
|
|
|
|
registry.serviceServerUpGauge = datadogClient.NewGauge(ddServiceServerUpName)
|
|
|
|
registry.serviceReqsBytesCounter = datadogClient.NewCounter(ddServiceReqsBytesName, 1.0)
|
|
|
|
registry.serviceRespsBytesCounter = datadogClient.NewCounter(ddServiceRespsBytesName, 1.0)
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return registry
|
|
|
|
}
|
|
|
|
|
2022-06-29 08:34:08 +00:00
|
|
|
func initDatadogClient(ctx context.Context, config *types.Datadog) {
|
2017-08-23 18:46:03 +00:00
|
|
|
address := config.Address
|
|
|
|
if len(address) == 0 {
|
|
|
|
address = "localhost:8125"
|
|
|
|
}
|
|
|
|
|
2022-06-29 08:34:08 +00:00
|
|
|
ctx, datadogLoopCancelFunc = context.WithCancel(ctx)
|
2017-08-23 18:46:03 +00:00
|
|
|
|
|
|
|
safe.Go(func() {
|
2022-06-29 08:34:08 +00:00
|
|
|
ticker := time.NewTicker(time.Duration(config.PushInterval))
|
|
|
|
defer ticker.Stop()
|
2017-08-23 18:46:03 +00:00
|
|
|
|
2022-06-29 08:34:08 +00:00
|
|
|
datadogClient.SendLoop(ctx, ticker.C, "udp", address)
|
|
|
|
})
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 08:34:08 +00:00
|
|
|
// StopDatadog stops the Datadog metrics pusher.
|
2017-08-23 18:46:03 +00:00
|
|
|
func StopDatadog() {
|
2022-06-29 08:34:08 +00:00
|
|
|
if datadogLoopCancelFunc != nil {
|
|
|
|
datadogLoopCancelFunc()
|
|
|
|
datadogLoopCancelFunc = nil
|
2017-08-23 18:46:03 +00:00
|
|
|
}
|
|
|
|
}
|