You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RequestLogger middleware allows developer fully to customize what is logged and how it is logged and is more suitable
112
112
for usage with 3rd party (structured logging) libraries.
113
113
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
+
typeRequestLoggerConfigstruct {
117
+
// Skipper defines a function to skip middleware.
118
+
SkipperSkipper
119
+
120
+
// BeforeNextFunc defines a function that is called before next middleware or handler is called in chain.
121
+
BeforeNextFuncfunc(c echo.Context)
122
+
// LogValuesFunc defines a function that is called with values extracted by logger from request/response.
123
+
// Mandatory.
124
+
LogValuesFuncfunc(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
+
HandleErrorbool
132
+
133
+
// LogLatency instructs logger to record duration it took to execute rest of the handler chain (next(c) call).
134
+
LogLatencybool
135
+
// LogProtocol instructs logger to extract request protocol (i.e. `HTTP/1.1` or `HTTP/2`)
136
+
LogProtocolbool
137
+
// LogRemoteIP instructs logger to extract request remote IP. See `echo.Context.RealIP()` for implementation details.
138
+
LogRemoteIPbool
139
+
// LogHost instructs logger to extract request host value (i.e. `example.com`)
140
+
LogHostbool
141
+
// LogMethod instructs logger to extract request method value (i.e. `GET` etc)
142
+
LogMethodbool
143
+
// LogURI instructs logger to extract request URI (i.e. `/list?lang=en&page=1`)
144
+
LogURIbool
145
+
// LogURIPath instructs logger to extract request URI path part (i.e. `/list`)
146
+
LogURIPathbool
147
+
// LogRoutePath instructs logger to extract route path part to which request was matched to (i.e. `/user/:id`)
148
+
LogRoutePathbool
149
+
// LogRequestID instructs logger to extract request ID from request `X-Request-ID` header or response if request did not have value.
150
+
LogRequestIDbool
151
+
// LogReferer instructs logger to extract request referer values.
152
+
LogRefererbool
153
+
// LogUserAgent instructs logger to extract request user agent values.
154
+
LogUserAgentbool
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
+
LogStatusbool
158
+
// LogError instructs logger to extract error returned from executed handler chain.
159
+
LogErrorbool
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
+
LogContentLengthbool
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
+
LogResponseSizebool
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.
#### 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:
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