Change access logger
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
8ae5ee64bb
commit
ee761d4006
@ -10,6 +10,7 @@ import (
|
|||||||
"git.t-juice.club/torjus/gpaste"
|
"git.t-juice.club/torjus/gpaste"
|
||||||
"git.t-juice.club/torjus/gpaste/users"
|
"git.t-juice.club/torjus/gpaste/users"
|
||||||
"github.com/go-chi/chi/v5/middleware"
|
"github.com/go-chi/chi/v5/middleware"
|
||||||
|
"go.uber.org/zap"
|
||||||
)
|
)
|
||||||
|
|
||||||
type authCtxKey int
|
type authCtxKey int
|
||||||
@ -27,14 +28,38 @@ func (s *HTTPServer) MiddlewareAccessLogger(next http.Handler) http.Handler {
|
|||||||
|
|
||||||
reqID := middleware.GetReqID(r.Context())
|
reqID := middleware.GetReqID(r.Context())
|
||||||
|
|
||||||
|
// TODO: Maybe desugar in HTTPServer to avoid doing for all requests
|
||||||
|
logger := s.AccessLogger.Desugar()
|
||||||
|
|
||||||
defer func() {
|
defer func() {
|
||||||
s.AccessLogger.Infow(r.Method,
|
// DEBUG level
|
||||||
"path", r.URL.Path,
|
if ce := logger.Check(zap.DebugLevel, r.Method); ce != nil {
|
||||||
"status", ww.Status(),
|
ct := r.Header.Get("Content-Type")
|
||||||
"written", ww.BytesWritten(),
|
ce.Write(
|
||||||
"remote_addr", r.RemoteAddr,
|
zap.String("req_id", reqID),
|
||||||
"processing_time_ms", time.Since(t1).Milliseconds(),
|
zap.String("path", r.URL.Path),
|
||||||
"req_id", reqID)
|
zap.Int("status", ww.Status()),
|
||||||
|
zap.String("remote_addr", r.RemoteAddr),
|
||||||
|
zap.Int("bytes_written", ww.BytesWritten()),
|
||||||
|
zap.Duration("processing_time", time.Since(t1)),
|
||||||
|
zap.String("content_type", ct),
|
||||||
|
zap.Any("headers", r.Header),
|
||||||
|
)
|
||||||
|
} else {
|
||||||
|
// INFO level
|
||||||
|
if ce := logger.Check(zap.InfoLevel, r.Method); ce != nil {
|
||||||
|
ce.Write(
|
||||||
|
zap.String("req_id", reqID),
|
||||||
|
zap.String("path", r.URL.Path),
|
||||||
|
zap.Int("status", ww.Status()),
|
||||||
|
zap.String("remote_addr", r.RemoteAddr),
|
||||||
|
zap.Int("bytes_written", ww.BytesWritten()),
|
||||||
|
zap.Duration("processing_time", time.Since(t1)),
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_ = logger.Sync()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
next.ServeHTTP(ww, r)
|
next.ServeHTTP(ww, r)
|
||||||
|
Loading…
Reference in New Issue
Block a user