grafana/pkg/middleware/perf.go

15 lines
237 B
Go
Raw Normal View History

package middleware
import (
"net/http"
"gopkg.in/macaron.v1"
m "github.com/grafana/grafana/pkg/models"
)
func MeasureRequestTime() macaron.Handler {
2018-03-07 10:54:50 -06:00
return func(res http.ResponseWriter, req *http.Request, c *m.ReqContext) {
}
}