mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2025-02-20 09:26:16 +00:00
Merge pull request #323 from glightfoot/improve-benchmarks
break out line benchmarks by format
This commit is contained in:
commit
da4a2950a7
1 changed files with 42 additions and 12 deletions
|
@ -21,8 +21,9 @@ import (
|
||||||
"github.com/prometheus/statsd_exporter/pkg/line"
|
"github.com/prometheus/statsd_exporter/pkg/line"
|
||||||
)
|
)
|
||||||
|
|
||||||
func benchmarkLineToEvents(times int, b *testing.B) {
|
var (
|
||||||
input := []string{
|
// just a grab bag of mixed formats, valid, invalid
|
||||||
|
mixedLines = []string{
|
||||||
"foo1:2|c",
|
"foo1:2|c",
|
||||||
"foo2:3|g",
|
"foo2:3|g",
|
||||||
"foo3:200|ms",
|
"foo3:200|ms",
|
||||||
|
@ -35,26 +36,55 @@ func benchmarkLineToEvents(times int, b *testing.B) {
|
||||||
"foo15:200|ms:300|ms:5|c|@0.1:6|g\nfoo15a:1|c:5|ms",
|
"foo15:200|ms:300|ms:5|c|@0.1:6|g\nfoo15a:1|c:5|ms",
|
||||||
"some_very_useful_metrics_with_quite_a_log_name:13|c",
|
"some_very_useful_metrics_with_quite_a_log_name:13|c",
|
||||||
}
|
}
|
||||||
logger := log.NewNopLogger()
|
nopLogger = log.NewNopLogger()
|
||||||
|
)
|
||||||
|
|
||||||
// reset benchmark timer to not measure startup costs
|
func benchmarkLinesToEvents(times int, b *testing.B, input []string) {
|
||||||
b.ResetTimer()
|
// always report allocations since this is a hot path
|
||||||
|
b.ReportAllocs()
|
||||||
|
|
||||||
for n := 0; n < b.N; n++ {
|
for n := 0; n < b.N; n++ {
|
||||||
for i := 0; i < times; i++ {
|
for i := 0; i < times; i++ {
|
||||||
for _, l := range input {
|
for _, l := range input {
|
||||||
line.LineToEvents(l, *sampleErrors, samplesReceived, tagErrors, tagsReceived, logger)
|
line.LineToEvents(l, *sampleErrors, samplesReceived, tagErrors, tagsReceived, nopLogger)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkLineToEvents1(b *testing.B) {
|
// Mixed statsd formats
|
||||||
benchmarkLineToEvents(1, b)
|
func BenchmarkLineToEventsMixed1(b *testing.B) {
|
||||||
|
benchmarkLinesToEvents(1, b, mixedLines)
|
||||||
}
|
}
|
||||||
func BenchmarkLineToEvents5(b *testing.B) {
|
func BenchmarkLineToEventsMixed5(b *testing.B) {
|
||||||
benchmarkLineToEvents(5, b)
|
benchmarkLinesToEvents(5, b, mixedLines)
|
||||||
}
|
}
|
||||||
func BenchmarkLineToEvents50(b *testing.B) {
|
func BenchmarkLineToEventsMixed50(b *testing.B) {
|
||||||
benchmarkLineToEvents(50, b)
|
benchmarkLinesToEvents(50, b, mixedLines)
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkLineFormats(b *testing.B) {
|
||||||
|
input := map[string]string{
|
||||||
|
"statsd": "foo1:2|c",
|
||||||
|
"invalidStatsd": "foo1:2|c||",
|
||||||
|
"dogStatsd": "foo1:100|c|#tag1:bar,tag2:baz",
|
||||||
|
"invalidDogStatsd": "foo3:100|c|#09digits:0,tag.with.dots:1",
|
||||||
|
"signalFx": "foo1.[foo=bar1,dim=val1]test:1|g",
|
||||||
|
"invalidSignalFx": "foo1.[foo=bar1,dim=val1test:1|g",
|
||||||
|
"influxDb": "foo1,tag1=bar,tag2=baz:100|c",
|
||||||
|
"invalidInfluxDb": "foo3,tag1=bar,tag2:100|c",
|
||||||
|
}
|
||||||
|
|
||||||
|
// reset benchmark timer to not measure startup costs
|
||||||
|
b.ResetTimer()
|
||||||
|
|
||||||
|
for name, l := range input {
|
||||||
|
b.Run(name, func(b *testing.B) {
|
||||||
|
// always report allocations since this is a hot path
|
||||||
|
b.ReportAllocs()
|
||||||
|
for n := 0; n < b.N; n++ {
|
||||||
|
line.LineToEvents(l, *sampleErrors, samplesReceived, tagErrors, tagsReceived, nopLogger)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue