Skip to content

Commit 135c511

Browse files
authoredDec 4, 2022
Add request route with "route" tag to logger middleware (#2162)
1 parent 8d4ac4c commit 135c511

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed
 

‎middleware/logger.go

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ type (
3535
// - host
3636
// - method
3737
// - path
38+
// - route
3839
// - protocol
3940
// - referer
4041
// - user_agent
@@ -173,6 +174,8 @@ func LoggerWithConfig(config LoggerConfig) echo.MiddlewareFunc {
173174
p = "/"
174175
}
175176
return buf.WriteString(p)
177+
case "route":
178+
return buf.WriteString(c.Path())
176179
case "protocol":
177180
return buf.WriteString(req.Proto)
178181
case "referer":

‎middleware/logger_test.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -92,17 +92,17 @@ func TestLoggerTemplate(t *testing.T) {
9292
e.Use(LoggerWithConfig(LoggerConfig{
9393
Format: `{"time":"${time_rfc3339_nano}","id":"${id}","remote_ip":"${remote_ip}","host":"${host}","user_agent":"${user_agent}",` +
9494
`"method":"${method}","uri":"${uri}","status":${status}, "latency":${latency},` +
95-
`"latency_human":"${latency_human}","bytes_in":${bytes_in}, "path":"${path}", "referer":"${referer}",` +
95+
`"latency_human":"${latency_human}","bytes_in":${bytes_in}, "path":"${path}", "route":"${route}", "referer":"${referer}",` +
9696
`"bytes_out":${bytes_out},"ch":"${header:X-Custom-Header}", "protocol":"${protocol}"` +
9797
`"us":"${query:username}", "cf":"${form:username}", "session":"${cookie:session}"}` + "\n",
9898
Output: buf,
9999
}))
100100

101-
e.GET("/", func(c echo.Context) error {
101+
e.GET("/users/:id", func(c echo.Context) error {
102102
return c.String(http.StatusOK, "Header Logged")
103103
})
104104

105-
req := httptest.NewRequest(http.MethodGet, "/?username=apagano-param&password=secret", nil)
105+
req := httptest.NewRequest(http.MethodGet, "/users/1?username=apagano-param&password=secret", nil)
106106
req.RequestURI = "/"
107107
req.Header.Add(echo.HeaderXRealIP, "127.0.0.1")
108108
req.Header.Add("Referer", "google.com")
@@ -127,7 +127,8 @@ func TestLoggerTemplate(t *testing.T) {
127127
"hexvalue": false,
128128
"GET": true,
129129
"127.0.0.1": true,
130-
"\"path\":\"/\"": true,
130+
"\"path\":\"/users/1\"": true,
131+
"\"route\":\"/users/:id\"": true,
131132
"\"uri\":\"/\"": true,
132133
"\"status\":200": true,
133134
"\"bytes_in\":0": true,

0 commit comments

Comments
 (0)
Please sign in to comment.