2020-03-23 22:41:10 -07:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2019-08-02 13:52:55 -07: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 13:19:11 -07:00
|
|
|
package trace_test
|
2019-08-02 13:52:55 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
2021-11-22 09:59:41 -06:00
|
|
|
"time"
|
2019-08-02 13:52:55 -07:00
|
|
|
|
2021-02-18 12:59:37 -05:00
|
|
|
"go.opentelemetry.io/otel/attribute"
|
2019-11-01 11:40:29 -07:00
|
|
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
2021-11-13 08:35:04 -08:00
|
|
|
"go.opentelemetry.io/otel/trace"
|
2019-08-02 13:52:55 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkStartEndSpan(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
traceBenchmark(b, "Benchmark StartEndSpan", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 13:52:55 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
2019-09-27 10:48:10 -07:00
|
|
|
span.End()
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_4(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
traceBenchmark(b, "Benchmark Start With 4 Attributes", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 13:52:55 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
2021-11-22 09:59:41 -06:00
|
|
|
attribute.Int64("key3", 123),
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.Float64("key4", 123.456),
|
2019-08-02 13:52:55 -07:00
|
|
|
)
|
2019-09-27 10:48:10 -07:00
|
|
|
span.End()
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-11-20 16:34:43 -04:00
|
|
|
func BenchmarkSpanWithAttributes_8(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
traceBenchmark(b, "Benchmark Start With 8 Attributes", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 13:52:55 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.Bool("key1", false),
|
|
|
|
attribute.String("key2", "hello"),
|
2021-11-22 09:59:41 -06:00
|
|
|
attribute.Int64("key3", 123),
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.Float64("key4", 123.456),
|
|
|
|
attribute.Bool("key21", false),
|
|
|
|
attribute.String("key22", "hello"),
|
2021-11-22 09:59:41 -06:00
|
|
|
attribute.Int64("key23", 123),
|
2021-02-18 12:59:37 -05:00
|
|
|
attribute.Float64("key24", 123.456),
|
2019-08-02 13:52:55 -07:00
|
|
|
)
|
2019-09-27 10:48:10 -07:00
|
|
|
span.End()
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_all(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
traceBenchmark(b, "Benchmark Start With all Attribute types", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 13:52:55 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 12:59:37 -05: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 13:52:55 -07:00
|
|
|
)
|
2019-09-27 10:48:10 -07:00
|
|
|
span.End()
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanWithAttributes_all_2x(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
traceBenchmark(b, "Benchmark Start With all Attributes types twice", func(b *testing.B, t trace.Tracer) {
|
2019-08-02 13:52:55 -07:00
|
|
|
ctx := context.Background()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, span := t.Start(ctx, "/foo")
|
|
|
|
span.SetAttributes(
|
2021-02-18 12:59:37 -05: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 13:52:55 -07:00
|
|
|
)
|
2019-09-27 10:48:10 -07:00
|
|
|
span.End()
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-11-22 09:59:41 -06: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 13:52:55 -07:00
|
|
|
func BenchmarkTraceID_DotString(b *testing.B) {
|
2020-11-06 23:13:31 +01:00
|
|
|
t, _ := trace.TraceIDFromHex("0000000000000001000000000000002a")
|
2021-03-09 11:17:29 -05:00
|
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{TraceID: t})
|
2019-08-02 13:52:55 -07:00
|
|
|
|
2019-11-20 16:34:43 -04:00
|
|
|
want := "0000000000000001000000000000002a"
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-03-09 11:17:29 -05:00
|
|
|
if got := sc.TraceID().String(); got != want {
|
2019-11-20 16:34:43 -04:00
|
|
|
b.Fatalf("got = %q want = %q", got, want)
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
2019-11-20 16:34:43 -04:00
|
|
|
}
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkSpanID_DotString(b *testing.B) {
|
2021-03-09 11:17:29 -05:00
|
|
|
sc := trace.NewSpanContext(trace.SpanContextConfig{SpanID: trace.SpanID{1}})
|
2019-11-20 16:34:43 -04:00
|
|
|
want := "0100000000000000"
|
|
|
|
for i := 0; i < b.N; i++ {
|
2021-03-09 11:17:29 -05:00
|
|
|
if got := sc.SpanID().String(); got != want {
|
2019-11-20 16:34:43 -04:00
|
|
|
b.Fatalf("got = %q want = %q", got, want)
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
2019-11-20 16:34:43 -04:00
|
|
|
}
|
2019-08-02 13:52:55 -07:00
|
|
|
}
|
|
|
|
|
2020-11-06 23:13:31 +01:00
|
|
|
func traceBenchmark(b *testing.B, name string, fn func(*testing.B, trace.Tracer)) {
|
2019-08-02 13:52:55 -07:00
|
|
|
b.Run("AlwaysSample", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
2019-11-25 18:46:07 +01:00
|
|
|
fn(b, tracer(b, name, sdktrace.AlwaysSample()))
|
2019-08-02 13:52:55 -07:00
|
|
|
})
|
|
|
|
b.Run("NeverSample", func(b *testing.B) {
|
|
|
|
b.ReportAllocs()
|
2019-11-25 18:46:07 +01:00
|
|
|
fn(b, tracer(b, name, sdktrace.NeverSample()))
|
2019-08-02 13:52:55 -07:00
|
|
|
})
|
|
|
|
}
|
2019-10-22 13:19:11 -07:00
|
|
|
|
2020-11-06 23:13:31 +01:00
|
|
|
func tracer(b *testing.B, name string, sampler sdktrace.Sampler) trace.Tracer {
|
2021-03-18 16:34:47 +00:00
|
|
|
tp := sdktrace.NewTracerProvider(sdktrace.WithSampler(sampler))
|
2019-11-25 18:46:07 +01:00
|
|
|
return tp.Tracer(name)
|
2019-10-28 14:05:06 -03:00
|
|
|
}
|