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"
|
|
|
|
"time"
|
|
|
|
|
2020-02-28 05:50:58 -06:00
|
|
|
"github.com/grafana/grafana/pkg/models"
|
2016-06-07 05:11:41 -05:00
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
2017-09-06 04:23:52 -05:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2020-12-01 08:04:59 -06:00
|
|
|
cw "github.com/weaveworks/common/middleware"
|
2016-01-13 08:38:54 -06:00
|
|
|
"gopkg.in/macaron.v1"
|
2014-10-05 09:50:04 -05:00
|
|
|
)
|
|
|
|
|
2020-12-11 04:44:44 -06:00
|
|
|
func Logger(cfg *setting.Cfg) macaron.Handler {
|
2014-10-05 09:50:04 -05:00
|
|
|
return func(res http.ResponseWriter, req *http.Request, c *macaron.Context) {
|
|
|
|
start := time.Now()
|
2016-06-03 02:17:36 -05:00
|
|
|
c.Data["perfmon.start"] = start
|
2014-10-05 09:50:04 -05:00
|
|
|
|
2015-12-17 07:28:11 -06:00
|
|
|
rw := res.(macaron.ResponseWriter)
|
|
|
|
c.Next()
|
|
|
|
|
2020-11-05 06:07:06 -06:00
|
|
|
timeTaken := time.Since(start) / time.Millisecond
|
2016-06-03 02:17:36 -05:00
|
|
|
|
|
|
|
if timer, ok := c.Data["perfmon.timer"]; ok {
|
2017-09-06 04:23:52 -05:00
|
|
|
timerTyped := timer.(prometheus.Summary)
|
2020-11-05 06:07:06 -06:00
|
|
|
timerTyped.Observe(float64(timeTaken))
|
2016-06-03 02:17:36 -05:00
|
|
|
}
|
2015-10-08 10:30:13 -05:00
|
|
|
|
2016-06-06 16:06:44 -05:00
|
|
|
status := rw.Status()
|
|
|
|
if status == 200 || status == 304 {
|
2020-12-11 04:44:44 -06:00
|
|
|
if !cfg.RouterLogging {
|
2016-06-07 05:11:41 -05:00
|
|
|
return
|
|
|
|
}
|
2014-10-05 09:50:04 -05:00
|
|
|
}
|
2015-10-08 10:30:13 -05:00
|
|
|
|
2016-06-06 16:06:44 -05:00
|
|
|
if ctx, ok := c.Data["ctx"]; ok {
|
2020-02-28 05:50:58 -06:00
|
|
|
ctxTyped := ctx.(*models.ReqContext)
|
2020-11-09 22:45:39 -06:00
|
|
|
|
|
|
|
logParams := []interface{}{
|
|
|
|
"method", req.Method,
|
|
|
|
"path", req.URL.Path,
|
|
|
|
"status", status,
|
|
|
|
"remote_addr", c.RemoteAddr(),
|
|
|
|
"time_ms", int64(timeTaken),
|
|
|
|
"size", rw.Size(),
|
|
|
|
"referer", req.Referer(),
|
|
|
|
}
|
|
|
|
|
2020-12-01 08:04:59 -06:00
|
|
|
traceID, exist := cw.ExtractTraceID(ctxTyped.Req.Request.Context())
|
2020-11-09 22:45:39 -06:00
|
|
|
if exist {
|
|
|
|
logParams = append(logParams, "traceID", traceID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if status >= 500 {
|
|
|
|
ctxTyped.Logger.Error("Request Completed", logParams...)
|
2016-06-11 05:16:33 -05:00
|
|
|
} else {
|
2020-11-09 22:45:39 -06:00
|
|
|
ctxTyped.Logger.Info("Request Completed", logParams...)
|
2016-06-11 05:16:33 -05:00
|
|
|
}
|
2016-06-06 16:06:44 -05:00
|
|
|
}
|
2014-10-05 09:50:04 -05:00
|
|
|
}
|
|
|
|
}
|