2020-03-24 07:41:10 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-08-02 22:52:55 +02:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2019-10-22 22:19:11 +02:00
|
|
|
package trace_test
|
2019-08-02 22:52:55 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
2021-11-22 17:59:41 +02:00
|
|
|
"time"
|
2019-08-02 22:52:55 +02:00
|
|
|
|
2021-02-18 19:59:37 +02:00
|
|
|
"go.opentelemetry.io/otel/attribute"
|
2019-11-01 20:40:29 +02:00
|
|
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
2021-11-13 18:35:04 +02:00
|
|
|
"go.opentelemetry.io/otel/trace"
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkStartEndSpan(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
traceBenchmark(b, "Benchmark StartEndSpan", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 22:52:55 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
2019-09-27 19:48:10 +02:00
|
|
|
span.End()
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_4(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Attributes", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 22:52:55 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
2021-11-22 17:59:41 +02:00
|
|
|
attribute.Int64("key3", 123),
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Float64("key4", 123.456),
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
2019-09-27 19:48:10 +02:00
|
|
|
span.End()
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-20 22:34:43 +02:00
|
|
|
func BenchmarkSpanWithAttributes_8(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
traceBenchmark(b, "Benchmark Start With 8 Attributes", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 22:52:55 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
2021-11-22 17:59:41 +02:00
|
|
|
attribute.Int64("key3", 123),
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Float64("key4", 123.456),
|
|
|
|
attribute.Bool("key21", false),
|
|
|
|
attribute.String("key22", "hello"),
|
2021-11-22 17:59:41 +02:00
|
|
|
attribute.Int64("key23", 123),
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Float64("key24", 123.456),
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
2019-09-27 19:48:10 +02:00
|
|
|
span.End()
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_all(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
traceBenchmark(b, "Benchmark Start With all Attribute types", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 22:52:55 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
|
|
|
attribute.Int64("key3", 123),
|
|
|
|
attribute.Float64("key7", 123.456),
|
|
|
|
attribute.Int("key9", 123),
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
2019-09-27 19:48:10 +02:00
|
|
|
span.End()
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_all_2x(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
traceBenchmark(b, "Benchmark Start With all Attributes types twice", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 22:52:55 +02:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 19:59:37 +02:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
|
|
|
attribute.Int64("key3", 123),
|
|
|
|
attribute.Float64("key7", 123.456),
|
|
|
|
attribute.Int("key10", 123),
|
|
|
|
attribute.Bool("key21", false),
|
|
|
|
attribute.String("key22", "hello"),
|
|
|
|
attribute.Int64("key23", 123),
|
|
|
|
attribute.Float64("key27", 123.456),
|
|
|
|
attribute.Int("key210", 123),
|
2019-08-02 22:52:55 +02:00
|
|
|
)
|
2019-09-27 19:48:10 +02:00
|
|
|
span.End()
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-11-22 17:59:41 +02:00
|
|
|
func BenchmarkSpanWithEvents_4(b *testing.B) {
|
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Events", func(b *testing.B, t trace.Tracer) {
|
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.AddEvent("event1")
|
|
|
|
span.AddEvent("event2")
|
|
|
|
span.AddEvent("event3")
|
|
|
|
span.AddEvent("event4")
|
|
|
|
span.End()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithEvents_8(b *testing.B) {
|
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Events", func(b *testing.B, t trace.Tracer) {
|
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.AddEvent("event1")
|
|
|
|
span.AddEvent("event2")
|
|
|
|
span.AddEvent("event3")
|
|
|
|
span.AddEvent("event4")
|
|
|
|
span.AddEvent("event5")
|
|
|
|
span.AddEvent("event6")
|
|
|
|
span.AddEvent("event7")
|
|
|
|
span.AddEvent("event8")
|
|
|
|
span.End()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithEvents_WithStackTrace(b *testing.B) {
|
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Attributes", func(b *testing.B, t trace.Tracer) {
|
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.AddEvent("event1", trace.WithStackTrace(true))
|
|
|
|
span.End()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
func BenchmarkSpanWithEvents_WithTimestamp(b *testing.B) {
|
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Attributes", func(b *testing.B, t trace.Tracer) {
|
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.AddEvent("event1", trace.WithTimestamp(time.Unix(0, 0)))
|
|
|
|
span.End()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-08-02 22:52:55 +02:00
|
|
|
func BenchmarkTraceID_DotString(b *testing.B) {
|
2020-11-07 00:13:31 +02:00
|
|
|
t, _ := trace.TraceIDFromHex("0000000000000001000000000000002a")
|
2021-03-09 18:17:29 +02:00
|
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{TraceID: t})
|
2019-08-02 22:52:55 +02:00
|
|
|
|
2019-11-20 22:34:43 +02:00
|
|
|
want := "0000000000000001000000000000002a"
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-03-09 18:17:29 +02:00
|
|
|
if got := sc.TraceID().String(); got != want {
|
2019-11-20 22:34:43 +02:00
|
|
|
b.Fatalf("got = %q want = %q", got, want)
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
2019-11-20 22:34:43 +02:00
|
|
|
}
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanID_DotString(b *testing.B) {
|
2021-03-09 18:17:29 +02:00
|
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{SpanID: trace.SpanID{1}})
|
2019-11-20 22:34:43 +02:00
|
|
|
want := "0100000000000000"
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-03-09 18:17:29 +02:00
|
|
|
if got := sc.SpanID().String(); got != want {
|
2019-11-20 22:34:43 +02:00
|
|
|
b.Fatalf("got = %q want = %q", got, want)
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
2019-11-20 22:34:43 +02:00
|
|
|
}
|
2019-08-02 22:52:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
func traceBenchmark(b *testing.B, name string, fn func(*testing.B, trace.Tracer)) {
|
2019-08-02 22:52:55 +02:00
|
|
|
b.Run("AlwaysSample", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
2019-11-25 19:46:07 +02:00
|
|
|
fn(b, tracer(b, name, sdktrace.AlwaysSample()))
|
2019-08-02 22:52:55 +02:00
|
|
|
})
|
|
|
|
b.Run("NeverSample", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
2019-11-25 19:46:07 +02:00
|
|
|
fn(b, tracer(b, name, sdktrace.NeverSample()))
|
2019-08-02 22:52:55 +02:00
|
|
|
})
|
|
|
|
}
|
2019-10-22 22:19:11 +02:00
|
|
|
|
2020-11-07 00:13:31 +02:00
|
|
|
func tracer(b *testing.B, name string, sampler sdktrace.Sampler) trace.Tracer {
|
2021-03-18 18:34:47 +02:00
|
|
|
tp := sdktrace.NewTracerProvider(sdktrace.WithSampler(sampler))
|
2019-11-25 19:46:07 +02:00
|
|
|
return tp.Tracer(name)
|
2019-10-28 19:05:06 +02:00
|
|
|
}
|