mirror of
https://github.com/prometheus/prometheus
synced 2024-12-26 08:33:06 +00:00
Only log every query when debugging.
Change-Id: I4f988d81cda6f6deb0ed7f497de4aa75409b158f
This commit is contained in:
parent
9b74324d9e
commit
1828b1f55c
@ -67,7 +67,7 @@ func (serv MetricsService) Query(w http.ResponseWriter, r *http.Request) {
|
||||
|
||||
queryStats := stats.NewTimerGroup()
|
||||
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)
|
||||
}
|
||||
|
||||
@ -130,7 +130,7 @@ func (serv MetricsService) QueryRange(w http.ResponseWriter, r *http.Request) {
|
||||
result := ast.TypedValueToJSON(matrix, "matrix")
|
||||
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)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user