forked from DataDog/datadog-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_sampler_bench_test.go
70 lines (59 loc) · 2.25 KB
/
check_sampler_bench_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2016-2020 Datadog, Inc.
package aggregator
import (
"testing"
"time"
"github.com/DataDog/datadog-agent/pkg/aggregator/ckey"
"github.com/DataDog/datadog-agent/pkg/metrics"
)
func benchmarkAddBucket(bucketValue int64, b *testing.B) {
checkSampler := newCheckSampler()
bucket := &metrics.HistogramBucket{
Name: "my.histogram",
Value: bucketValue,
LowerBound: 10.0,
UpperBound: 20.0,
Tags: []string{"foo", "bar"},
Timestamp: 12345.0,
}
for n := 0; n < b.N; n++ {
checkSampler.addBucket(bucket)
// reset bucket cache
checkSampler.lastBucketValue = make(map[ckey.ContextKey]int64)
checkSampler.lastSeenBucket = make(map[ckey.ContextKey]time.Time)
}
}
func benchmarkAddBucketWideBounds(bucketValue int64, b *testing.B) {
checkSampler := newCheckSampler()
bounds := []float64{0, .0005, .001, .003, .005, .007, .01, .015, .02, .025, .03, .04, .05, .06, .07, .08, .09, .1, .5, 1, 5, 10}
bucket := &metrics.HistogramBucket{
Name: "my.histogram",
Value: bucketValue,
Tags: []string{"foo", "bar"},
Timestamp: 12345.0,
}
for n := 0; n < b.N; n++ {
for i := range bounds {
if i == 0 {
continue
}
bucket.LowerBound = bounds[i-1]
bucket.UpperBound = bounds[i]
checkSampler.addBucket(bucket)
}
// reset bucket cache
checkSampler.lastBucketValue = make(map[ckey.ContextKey]int64)
checkSampler.lastSeenBucket = make(map[ckey.ContextKey]time.Time)
}
}
func BenchmarkAddBucket1(b *testing.B) { benchmarkAddBucket(1, b) }
func BenchmarkAddBucket10(b *testing.B) { benchmarkAddBucket(10, b) }
func BenchmarkAddBucket100(b *testing.B) { benchmarkAddBucket(100, b) }
func BenchmarkAddBucket1000(b *testing.B) { benchmarkAddBucket(1000, b) }
func BenchmarkAddBucket10000(b *testing.B) { benchmarkAddBucket(10000, b) }
func BenchmarkAddBucket1000000(b *testing.B) { benchmarkAddBucket(1000000, b) }
func BenchmarkAddBucket10000000(b *testing.B) { benchmarkAddBucket(10000000, b) }
func BenchmarkAddBucketWide1e10(b *testing.B) { benchmarkAddBucketWideBounds(1e10, b) }