mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-03-11 15:34:56 +00:00
app/vmselect: use warning level instead of info level for logging slow queries that take longer than -search.logSlowQueryDuration
This commit is contained in:
parent
bba1442649
commit
5d0c37bec0
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ func Exec(ec *EvalConfig, q string, isFirstPointOnly bool) ([]netstorage.Result,
|
||||||
defer func() {
|
defer func() {
|
||||||
d := time.Since(startTime)
|
d := time.Since(startTime)
|
||||||
if d >= *logSlowQueryDuration {
|
if d >= *logSlowQueryDuration {
|
||||||
logger.Infof("slow query according to -search.logSlowQueryDuration=%s: duration=%.3f seconds, start=%d, end=%d, step=%d, query=%q",
|
logger.Warnf("slow query according to -search.logSlowQueryDuration=%s: duration=%.3f seconds, start=%d, end=%d, step=%d, query=%q",
|
||||||
*logSlowQueryDuration, d.Seconds(), ec.Start/1000, ec.End/1000, ec.Step/1000, q)
|
*logSlowQueryDuration, d.Seconds(), ec.Start/1000, ec.End/1000, ec.Step/1000, q)
|
||||||
slowQueries.Inc()
|
slowQueries.Inc()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue