mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
5ca7ede9e4
* switch default log level to info add start message and cleanup server start * refactor code * fix agent debug / trace logging
48 lines
1.2 KiB
Go
48 lines
1.2 KiB
Go
package middleware
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// Logger returns a gin.HandlerFunc (middleware) that logs requests using zerolog.
|
|
//
|
|
// Requests with errors are logged using log.Err().
|
|
// Requests without errors are logged using log.Info().
|
|
//
|
|
// It receives:
|
|
// 1. A time package format string (e.g. time.RFC3339).
|
|
// 2. A boolean stating whether to use UTC time zone or local.
|
|
func Logger(timeFormat string, utc bool) gin.HandlerFunc {
|
|
return func(c *gin.Context) {
|
|
start := time.Now()
|
|
// some evil middlewares modify this values
|
|
path := c.Request.URL.Path
|
|
c.Next()
|
|
|
|
end := time.Now()
|
|
latency := end.Sub(start)
|
|
if utc {
|
|
end = end.UTC()
|
|
}
|
|
|
|
entry := map[string]interface{}{
|
|
"status": c.Writer.Status(),
|
|
"method": c.Request.Method,
|
|
"path": path,
|
|
"ip": c.ClientIP(),
|
|
"latency": latency,
|
|
"user-agent": c.Request.UserAgent(),
|
|
"time": end.Format(timeFormat),
|
|
}
|
|
|
|
if len(c.Errors) > 0 {
|
|
// Append error field if this is an erroneous request.
|
|
log.Error().Str("error", c.Errors.String()).Fields(entry).Msg("")
|
|
} else {
|
|
log.Debug().Fields(entry).Msg("")
|
|
}
|
|
}
|
|
}
|