mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-01-05 22:54:18 +02:00
23 lines
458 B
Go
23 lines
458 B
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package global
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
)
|
|
|
|
func BenchmarkStartEndSpanNoSDK(b *testing.B) {
|
|
// Compare with BenchmarkStartEndSpan() in
|
|
// ../../sdk/trace/benchmark_test.go.
|
|
ResetForTest(b)
|
|
t := TracerProvider().Tracer("Benchmark StartEndSpan")
|
|
ctx := context.Background()
|
|
b.ResetTimer()
|
|
for i := 0; i < b.N; i++ {
|
|
_, span := t.Start(ctx, "/foo")
|
|
span.End()
|
|
}
|
|
}
|