mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-15 00:13:30 +01:00
app/vmselect/promql/active_queries.go: simplify code a bit by inlining getNextActiveQueryID function
This commit is contained in:
parent
418f0e46cb
commit
6c1a47b5e0
@ -56,7 +56,7 @@ func (aq *activeQueries) Add(ec *EvalConfig, q string) uint64 {
|
||||
aqe.start = ec.Start
|
||||
aqe.end = ec.End
|
||||
aqe.step = ec.Step
|
||||
aqe.qid = getNextActiveQueryID()
|
||||
aqe.qid = atomic.AddUint64(&nextActiveQueryID, 1)
|
||||
aqe.q = q
|
||||
aqe.startTime = time.Now()
|
||||
|
||||
@ -82,8 +82,4 @@ func (aq *activeQueries) GetAll() []activeQueryEntry {
|
||||
return aqes
|
||||
}
|
||||
|
||||
func getNextActiveQueryID() uint64 {
|
||||
return atomic.AddUint64(&nextActiveQueryID, 1)
|
||||
}
|
||||
|
||||
var nextActiveQueryID = uint64(time.Now().UnixNano())
|
||||
|
Loading…
Reference in New Issue
Block a user