mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
001589cd6d
Adds ability to record metrics and gather them for Prometheus.
18 lines
435 B
Go
18 lines
435 B
Go
package middlewares
|
|
|
|
import (
|
|
"github.com/valyala/fasthttp"
|
|
)
|
|
|
|
// LogRequest provides trace logging for all requests.
|
|
func LogRequest(next fasthttp.RequestHandler) fasthttp.RequestHandler {
|
|
return func(ctx *fasthttp.RequestCtx) {
|
|
autheliaCtx := &AutheliaCtx{RequestCtx: ctx}
|
|
logger := NewRequestLogger(autheliaCtx)
|
|
|
|
logger.Trace("Request hit")
|
|
next(ctx)
|
|
logger.Tracef("Replied (status=%d)", ctx.Response.StatusCode())
|
|
}
|
|
}
|