mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
ed523b5bbc
This allows performing online de-duplication of incoming samples
22 lines
404 B
Go
22 lines
404 B
Go
package streamaggr
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
)
|
|
|
|
func BenchmarkDeduplicatorPush(b *testing.B) {
|
|
pushFunc := func(tss []prompbmarshal.TimeSeries) {}
|
|
d := NewDeduplicator(pushFunc, time.Hour)
|
|
|
|
b.ReportAllocs()
|
|
b.SetBytes(int64(len(benchSeries)))
|
|
b.RunParallel(func(pb *testing.PB) {
|
|
for pb.Next() {
|
|
d.Push(benchSeries)
|
|
}
|
|
})
|
|
}
|