app/vmselect: add remoteAddr to slow query log in order to improve debuggability

This will simplify identifying the client that sends slow queries to VictoriaMetrics.
This commit is contained in:
Aliaksandr Valialkin 2020-11-18 20:37:54 +02:00
parent 2af08d6e97
commit e72ccc9239

View file

@ -33,8 +33,8 @@ 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.Warnf("slow query according to -search.logSlowQueryDuration=%s: duration=%.3f seconds, start=%d, end=%d, step=%d, accountID=%d, projectID=%d, query=%q", logger.Warnf("slow query according to -search.logSlowQueryDuration=%s: remoteAddr=%s, duration=%.3f seconds, start=%d, end=%d, step=%d, accountID=%d, projectID=%d, query=%q",
*logSlowQueryDuration, d.Seconds(), ec.Start/1000, ec.End/1000, ec.Step/1000, ec.AuthToken.AccountID, ec.AuthToken.ProjectID, q) *logSlowQueryDuration, ec.QuotedRemoteAddr, d.Seconds(), ec.Start/1000, ec.End/1000, ec.Step/1000, ec.AuthToken.AccountID, ec.AuthToken.ProjectID, q)
slowQueries.Inc() slowQueries.Inc()
} }
}() }()