Skip to content

Commit f8fc1c3

Browse files
authored
Update logger.md (#361)
* Update logger.md
1 parent 7eb5db7 commit f8fc1c3

File tree

1 file changed

+117
-3
lines changed

1 file changed

+117
-3
lines changed

website/docs/middleware/logger.md

+117-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ e.Use(middleware.Logger())
2121

2222
*Sample output*
2323

24-
```js
24+
```exec
2525
{"time":"2017-01-12T08:58:07.372015644-08:00","remote_ip":"::1","host":"localhost:1323","method":"GET","uri":"/","status":200,"error":"","latency":14743,"latency_human":"14.743µs","bytes_in":0,"bytes_out":2}
2626
```
2727

@@ -39,7 +39,7 @@ Example above uses a `Format` which logs request method and request URI.
3939

4040
*Sample output*
4141

42-
```sh
42+
```exec
4343
method=GET, uri=/, status=200
4444
```
4545

@@ -111,16 +111,87 @@ DefaultLoggerConfig = LoggerConfig{
111111
RequestLogger middleware allows developer fully to customize what is logged and how it is logged and is more suitable
112112
for usage with 3rd party (structured logging) libraries.
113113

114-
See [`RequestLoggerConfig`](https://github.com/labstack/echo/blob/master/middleware/request_logger.go) structure fields for values that logger knows to extract.
114+
You can quickly acquaint yourself with the values that the logger knows to extract by referring to the fields of the [`RequestLoggerConfig`](https://github.com/labstack/echo/blob/master/middleware/request_logger.go) structure below. Or click the link to view the most up-to-date details.
115+
```go
116+
type RequestLoggerConfig struct {
117+
// Skipper defines a function to skip middleware.
118+
Skipper Skipper
119+
120+
// BeforeNextFunc defines a function that is called before next middleware or handler is called in chain.
121+
BeforeNextFunc func(c echo.Context)
122+
// LogValuesFunc defines a function that is called with values extracted by logger from request/response.
123+
// Mandatory.
124+
LogValuesFunc func(c echo.Context, v RequestLoggerValues) error
125+
126+
// HandleError instructs logger to call global error handler when next middleware/handler returns an error.
127+
// This is useful when you have custom error handler that can decide to use different status codes.
128+
//
129+
// A side-effect of calling global error handler is that now Response has been committed and sent to the client
130+
// and middlewares up in chain can not change Response status code or response body.
131+
HandleError bool
132+
133+
// LogLatency instructs logger to record duration it took to execute rest of the handler chain (next(c) call).
134+
LogLatency bool
135+
// LogProtocol instructs logger to extract request protocol (i.e. `HTTP/1.1` or `HTTP/2`)
136+
LogProtocol bool
137+
// LogRemoteIP instructs logger to extract request remote IP. See `echo.Context.RealIP()` for implementation details.
138+
LogRemoteIP bool
139+
// LogHost instructs logger to extract request host value (i.e. `example.com`)
140+
LogHost bool
141+
// LogMethod instructs logger to extract request method value (i.e. `GET` etc)
142+
LogMethod bool
143+
// LogURI instructs logger to extract request URI (i.e. `/list?lang=en&page=1`)
144+
LogURI bool
145+
// LogURIPath instructs logger to extract request URI path part (i.e. `/list`)
146+
LogURIPath bool
147+
// LogRoutePath instructs logger to extract route path part to which request was matched to (i.e. `/user/:id`)
148+
LogRoutePath bool
149+
// LogRequestID instructs logger to extract request ID from request `X-Request-ID` header or response if request did not have value.
150+
LogRequestID bool
151+
// LogReferer instructs logger to extract request referer values.
152+
LogReferer bool
153+
// LogUserAgent instructs logger to extract request user agent values.
154+
LogUserAgent bool
155+
// LogStatus instructs logger to extract response status code. If handler chain returns an echo.HTTPError,
156+
// the status code is extracted from the echo.HTTPError returned
157+
LogStatus bool
158+
// LogError instructs logger to extract error returned from executed handler chain.
159+
LogError bool
160+
// LogContentLength instructs logger to extract content length header value. Note: this value could be different from
161+
// actual request body size as it could be spoofed etc.
162+
LogContentLength bool
163+
// LogResponseSize instructs logger to extract response content length value. Note: when used with Gzip middleware
164+
// this value may not be always correct.
165+
LogResponseSize bool
166+
// LogHeaders instructs logger to extract given list of headers from request. Note: request can contain more than
167+
// one header with same value so slice of values is been logger for each given header.
168+
//
169+
// Note: header values are converted to canonical form with http.CanonicalHeaderKey as this how request parser converts header
170+
// names to. For example, the canonical key for "accept-encoding" is "Accept-Encoding".
171+
LogHeaders []string
172+
// LogQueryParams instructs logger to extract given list of query parameters from request URI. Note: request can
173+
// contain more than one query parameter with same name so slice of values is been logger for each given query param name.
174+
LogQueryParams []string
175+
// LogFormValues instructs logger to extract given list of form values from request body+URI. Note: request can
176+
// contain more than one form value with same name so slice of values is been logger for each given form value name.
177+
LogFormValues []string
178+
179+
}
180+
```
115181

116182

117183
### Examples
118184

119185
Example for naive `fmt.Printf`
120186
```go
187+
skipper := func(c echo.Context) bool {
188+
// Skip health check endpoint
189+
return c.Request().URL.Path == "/health"
190+
}
121191
e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
122192
LogStatus: true,
123193
LogURI: true,
194+
Skipper: skipper,
124195
BeforeNextFunc: func(c echo.Context) {
125196
c.Set("customValueFromContext", 42)
126197
},
@@ -131,6 +202,12 @@ e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
131202
},
132203
}))
133204
```
205+
*Sample output*
206+
207+
```exec
208+
REQUEST: uri: /hello, status: 200, custom-value: 42
209+
```
210+
134211

135212
Example for slog (https://pkg.go.dev/log/slog)
136213
```go
@@ -157,6 +234,10 @@ e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
157234
},
158235
}))
159236
```
237+
*Sample output*
238+
```exec
239+
{"time":"2024-12-30T20:55:46.2399999+08:00","level":"INFO","msg":"REQUEST","uri":"/hello","status":200}
240+
```
160241

161242
Example for Zerolog (https://github.com/rs/zerolog)
162243
```go
@@ -174,6 +255,10 @@ e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
174255
},
175256
}))
176257
```
258+
*Sample output*
259+
```exec
260+
{"level":"info","URI":"/hello","status":200,"message":"request"}
261+
```
177262

178263
Example for Zap (https://github.com/uber-go/zap)
179264
```go
@@ -191,6 +276,10 @@ e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
191276
},
192277
}))
193278
```
279+
*Sample output*
280+
```exec
281+
{"level":"info","ts":1735564026.3197417,"caller":"cmd/main.go:20","msg":"request","URI":"/hello","status":200}
282+
```
194283

195284
Example for Logrus (https://github.com/sirupsen/logrus)
196285
```go
@@ -208,3 +297,28 @@ e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
208297
},
209298
}))
210299
```
300+
*Sample output*
301+
```exec
302+
time="2024-12-30T21:08:49+08:00" level=info msg=request URI=/hello status=200
303+
```
304+
305+
### Troubleshooting Tips
306+
307+
#### 1. Solution for "panic: missing LogValuesFunc callback function for request logger middleware"
308+
This panic arises when the `LogValuesFunc` callback function, which is mandatory for the request logger middleware configuration, is left unset.
309+
310+
To address this, you must define a suitable function that adheres to the `LogValuesFunc` specifications and then assign it within the middleware configuration. Consider the following straightforward illustration:
311+
312+
```go
313+
func logValues(c echo.Context, v middleware.RequestLoggerValues) error {
314+
fmt.Printf("Request Method: %s, URI: %s\n", v.Method, v.URI)
315+
return nil
316+
}
317+
318+
e.Use(middleware.LoggerWithConfig(middleware.LoggerConfig{
319+
LogValuesFunc: logValues,
320+
}))
321+
```
322+
323+
#### 2. If Parameters in Logs Are Empty
324+
When investigating logging-related glitches, if you notice that certain parameters like `v.URI` and `v.Status` within the `LogValuesFunc` function produce empty outputs, your focus should shift to validating the relevant configuration elements. Specifically, check whether the corresponding items (such as `LogStatus`, `LogURI`, etc.) in `e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{...}))` have been erroneously set to `false` or failed to activate properly due to miscellaneous factors. Ensure these configuration particulars are accurately configured so that the pertinent request and response data can be precisely logged.

0 commit comments

Comments
 (0)