mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-27 14:39:40 -08:00
Only log every query when debugging.
Change-Id: I4f988d81cda6f6deb0ed7f497de4aa75409b158f
This commit is contained in:
parent
e041c0cd46
commit
db2e5a2509
|
@ -67,7 +67,7 @@ func (serv MetricsService) Query(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
queryStats := stats.NewTimerGroup()
|
queryStats := stats.NewTimerGroup()
|
||||||
result := ast.EvalToString(exprNode, timestamp, format, serv.Storage, queryStats)
|
result := ast.EvalToString(exprNode, timestamp, format, serv.Storage, queryStats)
|
||||||
glog.Infof("Instant query: %s\nQuery stats:\n%s\n", expr, queryStats)
|
glog.V(1).Infof("Instant query: %s\nQuery stats:\n%s\n", expr, queryStats)
|
||||||
fmt.Fprint(w, result)
|
fmt.Fprint(w, result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ func (serv MetricsService) QueryRange(w http.ResponseWriter, r *http.Request) {
|
||||||
result := ast.TypedValueToJSON(matrix, "matrix")
|
result := ast.TypedValueToJSON(matrix, "matrix")
|
||||||
jsonTimer.Stop()
|
jsonTimer.Stop()
|
||||||
|
|
||||||
glog.Infof("Range query: %s\nQuery stats:\n%s\n", expr, queryStats)
|
glog.V(1).Infof("Range query: %s\nQuery stats:\n%s\n", expr, queryStats)
|
||||||
fmt.Fprint(w, result)
|
fmt.Fprint(w, result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue