2014-10-05 09:50:04 -05:00
|
|
|
// Copyright 2013 Martini Authors
|
|
|
|
// Copyright 2014 Unknwon
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"): you may
|
|
|
|
// not use this file except in compliance with the License. You may obtain
|
|
|
|
// a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing permissions and limitations
|
|
|
|
// under the License.
|
|
|
|
|
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2022-05-23 12:18:33 -05:00
|
|
|
"net/url"
|
2014-10-05 09:50:04 -05:00
|
|
|
"time"
|
|
|
|
|
2022-09-05 00:39:22 -05:00
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
2022-05-23 12:18:33 -05:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2021-09-13 08:41:03 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/contexthandler"
|
2022-09-05 00:39:22 -05:00
|
|
|
"github.com/grafana/grafana/pkg/services/featuremgmt"
|
2016-06-07 05:11:41 -05:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2021-10-11 07:30:59 -05:00
|
|
|
"github.com/grafana/grafana/pkg/web"
|
2014-10-05 09:50:04 -05:00
|
|
|
)
|
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
func Logger(cfg *setting.Cfg) web.Middleware {
|
|
|
|
return func(next http.Handler) http.Handler {
|
|
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
start := time.Now()
|
2014-10-05 09:50:04 -05:00
|
|
|
|
2022-09-05 00:39:22 -05:00
|
|
|
// we have to init the context with the counter here to update the request
|
|
|
|
r = r.WithContext(log.InitCounter(r.Context()))
|
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
rw := web.Rw(w, r)
|
|
|
|
next.ServeHTTP(rw, r)
|
2015-12-17 07:28:11 -06:00
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
timeTaken := time.Since(start) / time.Millisecond
|
|
|
|
duration := time.Since(start).String()
|
|
|
|
ctx := contexthandler.FromContext(r.Context())
|
|
|
|
if ctx != nil && ctx.PerfmonTimer != nil {
|
|
|
|
ctx.PerfmonTimer.Observe(float64(timeTaken))
|
2016-06-07 05:11:41 -05:00
|
|
|
}
|
2015-10-08 10:30:13 -05:00
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
status := rw.Status()
|
|
|
|
if status == 200 || status == 304 {
|
|
|
|
if !cfg.RouterLogging {
|
|
|
|
return
|
|
|
|
}
|
2020-11-09 22:45:39 -06:00
|
|
|
}
|
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
if ctx != nil {
|
|
|
|
logParams := []interface{}{
|
|
|
|
"method", r.Method,
|
|
|
|
"path", r.URL.Path,
|
|
|
|
"status", status,
|
|
|
|
"remote_addr", ctx.RemoteAddr(),
|
|
|
|
"time_ms", int64(timeTaken),
|
|
|
|
"duration", duration,
|
|
|
|
"size", rw.Size(),
|
|
|
|
"referer", SanitizeURL(ctx, r.Referer()),
|
|
|
|
}
|
|
|
|
|
2022-09-05 00:39:22 -05:00
|
|
|
if cfg.IsFeatureToggleEnabled(featuremgmt.FlagDatabaseMetrics) {
|
|
|
|
logParams = append(logParams, "db_call_count", log.TotalDBCallCount(ctx.Req.Context()))
|
|
|
|
}
|
|
|
|
|
|
|
|
if handler, exist := routeOperationName(ctx.Req); exist {
|
|
|
|
logParams = append(logParams, "handler", handler)
|
|
|
|
}
|
|
|
|
|
2022-08-09 07:58:50 -05:00
|
|
|
if status >= 500 {
|
|
|
|
ctx.Logger.Error("Request Completed", logParams...)
|
|
|
|
} else {
|
|
|
|
ctx.Logger.Info("Request Completed", logParams...)
|
|
|
|
}
|
2016-06-11 05:16:33 -05:00
|
|
|
}
|
2022-08-09 07:58:50 -05:00
|
|
|
})
|
2014-10-05 09:50:04 -05:00
|
|
|
}
|
|
|
|
}
|
2022-05-23 12:18:33 -05:00
|
|
|
|
2022-07-27 09:10:47 -05:00
|
|
|
var sensitiveQueryStrings = [...]string{
|
|
|
|
"auth_token",
|
|
|
|
}
|
|
|
|
|
|
|
|
func SanitizeURL(ctx *models.ReqContext, s string) string {
|
2022-05-23 12:18:33 -05:00
|
|
|
if s == "" {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := url.ParseRequestURI(s)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Logger.Warn("Received invalid referer in request headers, removed for log forgery prevention")
|
|
|
|
return ""
|
|
|
|
}
|
2022-07-27 09:10:47 -05:00
|
|
|
|
|
|
|
// strip out sensitive query strings
|
|
|
|
values := u.Query()
|
|
|
|
for _, query := range sensitiveQueryStrings {
|
|
|
|
values.Del(query)
|
|
|
|
}
|
|
|
|
u.RawQuery = values.Encode()
|
|
|
|
|
2022-05-23 12:18:33 -05:00
|
|
|
return u.String()
|
|
|
|
}
|