mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
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)
|
||
|
}
|
||
|
})
|
||
|
}
|