Archived
2
0

logs ignore healthcheck requests.

This commit is contained in:
Miroslav Šedivý 2021-05-23 19:21:36 +02:00
parent ce42d81eeb
commit 35a092630e

View File

@ -13,6 +13,12 @@ func Logger(next http.Handler) http.Handler {
fn := func(w http.ResponseWriter, r *http.Request) {
req := map[string]interface{}{}
// ignore healthcheck
if r.RequestURI == "/health" {
next.ServeHTTP(w, r)
return
}
if reqID := middleware.GetReqID(r.Context()); reqID != "" {
req["id"] = reqID
}