You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/api/http/middlewares/slow_request_logger.go

37 lines
681 B

package middlewares
import (
"net/http"
"time"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
func WithSlowRequestsLogger(next http.Handler) http.Handler {
if zerolog.GlobalLevel() > zerolog.DebugLevel {
return next
}
burstSampler := &zerolog.BurstSampler{
Burst: 1,
Period: time.Minute,
}
log := log.With().Logger().Sample(burstSampler)
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
t0 := time.Now()
next.ServeHTTP(w, req)
if d := time.Since(t0); d > 100*time.Millisecond {
log.Debug().
Dur("elapsed_ms", d).
Str("method", req.Method).
Str("url", req.URL.String()).
Msg("slow request")
}
})
}