158 lines
5.4 KiB
Go
158 lines
5.4 KiB
Go
package metrics
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"sync/atomic"
|
|
"time"
|
|
"unicode/utf8"
|
|
|
|
"github.com/containous/alice"
|
|
"github.com/containous/traefik/v2/pkg/log"
|
|
"github.com/containous/traefik/v2/pkg/metrics"
|
|
"github.com/containous/traefik/v2/pkg/middlewares"
|
|
"github.com/containous/traefik/v2/pkg/middlewares/retry"
|
|
gokitmetrics "github.com/go-kit/kit/metrics"
|
|
)
|
|
|
|
const (
|
|
protoHTTP = "http"
|
|
protoSSE = "sse"
|
|
protoWebsocket = "websocket"
|
|
typeName = "Metrics"
|
|
nameEntrypoint = "metrics-entrypoint"
|
|
nameService = "metrics-service"
|
|
)
|
|
|
|
type metricsMiddleware struct {
|
|
// Important: Since this int64 field is using sync/atomic, it has to be at the top of the struct due to a bug on 32-bit platform
|
|
// See: https://golang.org/pkg/sync/atomic/ for more information
|
|
openConns int64
|
|
next http.Handler
|
|
reqsCounter gokitmetrics.Counter
|
|
reqDurationHistogram gokitmetrics.Histogram
|
|
openConnsGauge gokitmetrics.Gauge
|
|
baseLabels []string
|
|
}
|
|
|
|
// NewEntryPointMiddleware creates a new metrics middleware for an Entrypoint.
|
|
func NewEntryPointMiddleware(ctx context.Context, next http.Handler, registry metrics.Registry, entryPointName string) http.Handler {
|
|
log.FromContext(middlewares.GetLoggerCtx(ctx, nameEntrypoint, typeName)).Debug("Creating middleware")
|
|
|
|
return &metricsMiddleware{
|
|
next: next,
|
|
reqsCounter: registry.EntryPointReqsCounter(),
|
|
reqDurationHistogram: registry.EntryPointReqDurationHistogram(),
|
|
openConnsGauge: registry.EntryPointOpenConnsGauge(),
|
|
baseLabels: []string{"entrypoint", entryPointName},
|
|
}
|
|
}
|
|
|
|
// NewServiceMiddleware creates a new metrics middleware for a Service.
|
|
func NewServiceMiddleware(ctx context.Context, next http.Handler, registry metrics.Registry, serviceName string) http.Handler {
|
|
log.FromContext(middlewares.GetLoggerCtx(ctx, nameService, typeName)).Debug("Creating middleware")
|
|
|
|
return &metricsMiddleware{
|
|
next: next,
|
|
reqsCounter: registry.ServiceReqsCounter(),
|
|
reqDurationHistogram: registry.ServiceReqDurationHistogram(),
|
|
openConnsGauge: registry.ServiceOpenConnsGauge(),
|
|
baseLabels: []string{"service", serviceName},
|
|
}
|
|
}
|
|
|
|
// WrapEntryPointHandler Wraps metrics entrypoint to alice.Constructor.
|
|
func WrapEntryPointHandler(ctx context.Context, registry metrics.Registry, entryPointName string) alice.Constructor {
|
|
return func(next http.Handler) (http.Handler, error) {
|
|
return NewEntryPointMiddleware(ctx, next, registry, entryPointName), nil
|
|
}
|
|
}
|
|
|
|
// WrapServiceHandler Wraps metrics service to alice.Constructor.
|
|
func WrapServiceHandler(ctx context.Context, registry metrics.Registry, serviceName string) alice.Constructor {
|
|
return func(next http.Handler) (http.Handler, error) {
|
|
return NewServiceMiddleware(ctx, next, registry, serviceName), nil
|
|
}
|
|
}
|
|
|
|
func (m *metricsMiddleware) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
|
|
labels := []string{"method", getMethod(req), "protocol", getRequestProtocol(req)}
|
|
labels = append(labels, m.baseLabels...)
|
|
|
|
openConns := atomic.AddInt64(&m.openConns, 1)
|
|
m.openConnsGauge.With(labels...).Set(float64(openConns))
|
|
defer func(labelValues []string) {
|
|
openConns := atomic.AddInt64(&m.openConns, -1)
|
|
m.openConnsGauge.With(labelValues...).Set(float64(openConns))
|
|
}(labels)
|
|
|
|
start := time.Now()
|
|
recorder := &responseRecorder{rw, http.StatusOK}
|
|
m.next.ServeHTTP(recorder, req)
|
|
|
|
labels = append(labels, "code", strconv.Itoa(recorder.statusCode))
|
|
m.reqsCounter.With(labels...).Add(1)
|
|
m.reqDurationHistogram.With(labels...).Observe(time.Since(start).Seconds())
|
|
}
|
|
|
|
func getRequestProtocol(req *http.Request) string {
|
|
switch {
|
|
case isWebsocketRequest(req):
|
|
return protoWebsocket
|
|
case isSSERequest(req):
|
|
return protoSSE
|
|
default:
|
|
return protoHTTP
|
|
}
|
|
}
|
|
|
|
// isWebsocketRequest determines if the specified HTTP request is a websocket handshake request.
|
|
func isWebsocketRequest(req *http.Request) bool {
|
|
return containsHeader(req, "Connection", "upgrade") && containsHeader(req, "Upgrade", "websocket")
|
|
}
|
|
|
|
// isSSERequest determines if the specified HTTP request is a request for an event subscription.
|
|
func isSSERequest(req *http.Request) bool {
|
|
return containsHeader(req, "Accept", "text/event-stream")
|
|
}
|
|
|
|
func containsHeader(req *http.Request, name, value string) bool {
|
|
items := strings.Split(req.Header.Get(name), ",")
|
|
for _, item := range items {
|
|
if value == strings.ToLower(strings.TrimSpace(item)) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func getMethod(r *http.Request) string {
|
|
if !utf8.ValidString(r.Method) {
|
|
log.Warnf("Invalid HTTP method encoding: %s", r.Method)
|
|
return "NON_UTF8_HTTP_METHOD"
|
|
}
|
|
return r.Method
|
|
}
|
|
|
|
type retryMetrics interface {
|
|
ServiceRetriesCounter() gokitmetrics.Counter
|
|
}
|
|
|
|
// NewRetryListener instantiates a MetricsRetryListener with the given retryMetrics.
|
|
func NewRetryListener(retryMetrics retryMetrics, serviceName string) retry.Listener {
|
|
return &RetryListener{retryMetrics: retryMetrics, serviceName: serviceName}
|
|
}
|
|
|
|
// RetryListener is an implementation of the RetryListener interface to
|
|
// record RequestMetrics about retry attempts.
|
|
type RetryListener struct {
|
|
retryMetrics retryMetrics
|
|
serviceName string
|
|
}
|
|
|
|
// Retried tracks the retry in the RequestMetrics implementation.
|
|
func (m *RetryListener) Retried(req *http.Request, attempt int) {
|
|
m.retryMetrics.ServiceRetriesCounter().With("service", m.serviceName).Add(1)
|
|
}
|