mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
35 lines
818 B
Go
35 lines
818 B
Go
package common
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
func LogRequest(h fasthttp.RequestHandler, log *zap.Logger) fasthttp.RequestHandler {
|
|
return func(ctx *fasthttp.RequestCtx) {
|
|
var (
|
|
startedAt = time.Now()
|
|
ua = string(ctx.UserAgent())
|
|
)
|
|
|
|
h(ctx)
|
|
|
|
if strings.Contains(strings.ToLower(ua), "healthcheck") { // skip healthcheck requests logging
|
|
return
|
|
}
|
|
|
|
log.Info("HTTP request processed",
|
|
zap.String("useragent", ua),
|
|
zap.String("method", string(ctx.Method())),
|
|
zap.String("url", string(ctx.RequestURI())),
|
|
zap.String("referer", string(ctx.Referer())),
|
|
zap.Int("status_code", ctx.Response.StatusCode()),
|
|
zap.Bool("connection_close", ctx.Response.ConnectionClose()),
|
|
zap.Duration("duration", time.Since(startedAt)),
|
|
)
|
|
}
|
|
}
|