2024-05-13 15:39:49 +02:00
|
|
|
package streamaggr
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2024-06-07 16:24:09 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/bytesutil"
|
2024-05-13 15:39:49 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
|
|
|
)
|
|
|
|
|
2024-07-14 17:23:59 +02:00
|
|
|
// rateAggrState calculates output=rate_avg and rate_sum, e.g. the average per-second increase rate for counter metrics.
|
2024-05-13 15:39:49 +02:00
|
|
|
type rateAggrState struct {
|
|
|
|
m sync.Map
|
|
|
|
|
2024-07-14 17:23:59 +02:00
|
|
|
// isAvg is set to true if rate_avg() must be calculated instead of rate_sum().
|
|
|
|
isAvg bool
|
2024-05-13 15:39:49 +02:00
|
|
|
|
|
|
|
// Time series state is dropped if no new samples are received during stalenessSecs.
|
|
|
|
stalenessSecs uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type rateStateValue struct {
|
|
|
|
mu sync.Mutex
|
2024-05-13 16:40:37 +02:00
|
|
|
lastValues map[string]rateLastValueState
|
2024-05-13 15:39:49 +02:00
|
|
|
deleteDeadline uint64
|
|
|
|
deleted bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type rateLastValueState struct {
|
|
|
|
value float64
|
|
|
|
timestamp int64
|
|
|
|
deleteDeadline uint64
|
|
|
|
|
2024-07-14 17:23:59 +02:00
|
|
|
// increase stores cumulative increase for the current time series on the current aggregation interval
|
|
|
|
increase float64
|
|
|
|
|
|
|
|
// prevTimestamp is the timestamp of the last registered sample in the previous aggregation interval
|
2024-05-13 15:39:49 +02:00
|
|
|
prevTimestamp int64
|
|
|
|
}
|
|
|
|
|
2024-07-14 17:23:59 +02:00
|
|
|
func newRateAggrState(stalenessInterval time.Duration, isAvg bool) *rateAggrState {
|
2024-05-13 15:39:49 +02:00
|
|
|
stalenessSecs := roundDurationToSecs(stalenessInterval)
|
|
|
|
return &rateAggrState{
|
2024-07-14 17:23:59 +02:00
|
|
|
isAvg: isAvg,
|
2024-05-13 15:39:49 +02:00
|
|
|
stalenessSecs: stalenessSecs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (as *rateAggrState) pushSamples(samples []pushSample) {
|
|
|
|
currentTime := fasttime.UnixTimestamp()
|
|
|
|
deleteDeadline := currentTime + as.stalenessSecs
|
|
|
|
for i := range samples {
|
|
|
|
s := &samples[i]
|
|
|
|
inputKey, outputKey := getInputOutputKey(s.key)
|
|
|
|
|
|
|
|
again:
|
|
|
|
v, ok := as.m.Load(outputKey)
|
|
|
|
if !ok {
|
|
|
|
// The entry is missing in the map. Try creating it.
|
|
|
|
v = &rateStateValue{
|
2024-05-13 16:40:37 +02:00
|
|
|
lastValues: make(map[string]rateLastValueState),
|
2024-05-13 15:39:49 +02:00
|
|
|
}
|
2024-06-07 16:24:09 +02:00
|
|
|
outputKey = bytesutil.InternString(outputKey)
|
2024-05-13 15:39:49 +02:00
|
|
|
vNew, loaded := as.m.LoadOrStore(outputKey, v)
|
|
|
|
if loaded {
|
|
|
|
// Use the entry created by a concurrent goroutine.
|
|
|
|
v = vNew
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sv := v.(*rateStateValue)
|
|
|
|
sv.mu.Lock()
|
|
|
|
deleted := sv.deleted
|
|
|
|
if !deleted {
|
|
|
|
lv, ok := sv.lastValues[inputKey]
|
|
|
|
if ok {
|
|
|
|
if s.timestamp < lv.timestamp {
|
|
|
|
// Skip out of order sample
|
|
|
|
sv.mu.Unlock()
|
|
|
|
continue
|
|
|
|
}
|
2024-07-14 17:23:59 +02:00
|
|
|
|
2024-05-13 15:39:49 +02:00
|
|
|
if s.value >= lv.value {
|
2024-07-14 17:23:59 +02:00
|
|
|
lv.increase += s.value - lv.value
|
2024-05-13 15:39:49 +02:00
|
|
|
} else {
|
|
|
|
// counter reset
|
2024-07-14 17:23:59 +02:00
|
|
|
lv.increase += s.value
|
2024-05-13 15:39:49 +02:00
|
|
|
}
|
2024-07-14 17:23:59 +02:00
|
|
|
} else {
|
|
|
|
lv.prevTimestamp = s.timestamp
|
2024-05-13 15:39:49 +02:00
|
|
|
}
|
|
|
|
lv.value = s.value
|
|
|
|
lv.timestamp = s.timestamp
|
|
|
|
lv.deleteDeadline = deleteDeadline
|
2024-06-07 16:24:09 +02:00
|
|
|
|
|
|
|
inputKey = bytesutil.InternString(inputKey)
|
2024-05-13 15:39:49 +02:00
|
|
|
sv.lastValues[inputKey] = lv
|
|
|
|
sv.deleteDeadline = deleteDeadline
|
|
|
|
}
|
|
|
|
sv.mu.Unlock()
|
|
|
|
if deleted {
|
|
|
|
// The entry has been deleted by the concurrent call to flushState
|
|
|
|
// Try obtaining and updating the entry again.
|
|
|
|
goto again
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-14 10:06:22 +02:00
|
|
|
func (as *rateAggrState) flushState(ctx *flushCtx, _ bool) {
|
2024-05-13 15:39:49 +02:00
|
|
|
currentTime := fasttime.UnixTimestamp()
|
|
|
|
currentTimeMsec := int64(currentTime) * 1000
|
2024-07-14 17:23:59 +02:00
|
|
|
|
|
|
|
suffix := "rate_sum"
|
|
|
|
if as.isAvg {
|
|
|
|
suffix = "rate_avg"
|
|
|
|
}
|
|
|
|
|
|
|
|
as.removeOldEntries(ctx, suffix, currentTime)
|
2024-05-13 15:39:49 +02:00
|
|
|
|
|
|
|
m := &as.m
|
2024-07-10 00:14:15 +02:00
|
|
|
m.Range(func(k, v any) bool {
|
2024-05-13 15:39:49 +02:00
|
|
|
sv := v.(*rateStateValue)
|
2024-07-14 17:23:59 +02:00
|
|
|
|
2024-05-13 15:39:49 +02:00
|
|
|
sv.mu.Lock()
|
2024-07-14 17:23:59 +02:00
|
|
|
lvs := sv.lastValues
|
|
|
|
sumRate := 0.0
|
|
|
|
countSeries := 0
|
|
|
|
for k1, lv := range lvs {
|
|
|
|
d := float64(lv.timestamp-lv.prevTimestamp) / 1000
|
|
|
|
if d > 0 {
|
|
|
|
sumRate += lv.increase / d
|
|
|
|
countSeries++
|
|
|
|
}
|
|
|
|
lv.prevTimestamp = lv.timestamp
|
|
|
|
lv.increase = 0
|
|
|
|
lvs[k1] = lv
|
|
|
|
}
|
|
|
|
sv.mu.Unlock()
|
2024-05-13 15:39:49 +02:00
|
|
|
|
2024-07-14 17:23:59 +02:00
|
|
|
if countSeries == 0 {
|
|
|
|
// Nothing to update
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
result := sumRate
|
|
|
|
if as.isAvg {
|
|
|
|
result /= float64(countSeries)
|
|
|
|
}
|
|
|
|
|
|
|
|
key := k.(string)
|
|
|
|
ctx.appendSeries(key, suffix, currentTimeMsec, result)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (as *rateAggrState) removeOldEntries(ctx *flushCtx, suffix string, currentTime uint64) {
|
|
|
|
m := &as.m
|
|
|
|
var staleOutputSamples, staleInputSamples int
|
|
|
|
m.Range(func(k, v any) bool {
|
|
|
|
sv := v.(*rateStateValue)
|
|
|
|
|
|
|
|
sv.mu.Lock()
|
|
|
|
if currentTime > sv.deleteDeadline {
|
2024-05-13 15:39:49 +02:00
|
|
|
// Mark the current entry as deleted
|
2024-07-14 17:23:59 +02:00
|
|
|
sv.deleted = true
|
2024-07-01 14:56:17 +02:00
|
|
|
staleOutputSamples++
|
2024-07-14 17:23:59 +02:00
|
|
|
sv.mu.Unlock()
|
2024-05-13 15:39:49 +02:00
|
|
|
m.Delete(k)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete outdated entries in sv.lastValues
|
2024-06-14 10:06:22 +02:00
|
|
|
lvs := sv.lastValues
|
2024-07-14 17:23:59 +02:00
|
|
|
for k1, lv := range lvs {
|
|
|
|
if currentTime > lv.deleteDeadline {
|
2024-06-14 10:06:22 +02:00
|
|
|
delete(lvs, k1)
|
2024-07-01 14:56:17 +02:00
|
|
|
staleInputSamples++
|
2024-05-13 15:39:49 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sv.mu.Unlock()
|
|
|
|
return true
|
|
|
|
})
|
2024-07-14 17:23:59 +02:00
|
|
|
ctx.a.staleInputSamples[suffix].Add(staleInputSamples)
|
|
|
|
ctx.a.staleOutputSamples[suffix].Add(staleOutputSamples)
|
2024-05-13 15:39:49 +02:00
|
|
|
}
|