mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-12 10:04:29 +02:00
e88a091a72
* Make SpanContext Immutable * Adds NewSpanContext() constructor and SpanContextConfig{} struct for constructing a new SpanContext when all fields are known * Adds With<field>() methods to SpanContext for deriving a SpanContext with a single field changed. * Updates all uses of SpanContext to use the new API Signed-off-by: Anthony J Mirabella <a9@aneurysm9.com> * Update CHANGELOG.md Signed-off-by: Anthony J Mirabella <a9@aneurysm9.com> * Add tests for new SpanContext constructor and derivation Signed-off-by: Anthony J Mirabella <a9@aneurysm9.com> * Address PR feedback * Fix new uses of SpanContext from main
155 lines
4.0 KiB
Go
155 lines
4.0 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// 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.
|
|
|
|
package oteltest // import "go.opentelemetry.io/otel/oteltest"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/binary"
|
|
"sync"
|
|
"sync/atomic"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
// defaultSpanContextFunc returns the default SpanContextFunc.
|
|
func defaultSpanContextFunc() func(context.Context) trace.SpanContext {
|
|
var traceID, spanID uint64 = 1, 1
|
|
return func(ctx context.Context) trace.SpanContext {
|
|
var sc trace.SpanContext
|
|
if lsc := trace.SpanContextFromContext(ctx); lsc.IsValid() {
|
|
sc = lsc
|
|
} else if rsc := trace.RemoteSpanContextFromContext(ctx); rsc.IsValid() {
|
|
sc = rsc
|
|
} else {
|
|
var tid trace.TraceID
|
|
binary.BigEndian.PutUint64(tid[:], atomic.AddUint64(&traceID, 1))
|
|
sc = sc.WithTraceID(tid)
|
|
}
|
|
var sid trace.SpanID
|
|
binary.BigEndian.PutUint64(sid[:], atomic.AddUint64(&spanID, 1))
|
|
return sc.WithSpanID(sid)
|
|
}
|
|
}
|
|
|
|
type config struct {
|
|
// SpanContextFunc returns a SpanContext from an parent Context for a
|
|
// new span.
|
|
SpanContextFunc func(context.Context) trace.SpanContext
|
|
|
|
// SpanRecorder keeps track of spans.
|
|
SpanRecorder *SpanRecorder
|
|
}
|
|
|
|
func newConfig(opts ...Option) config {
|
|
conf := config{}
|
|
for _, opt := range opts {
|
|
opt.Apply(&conf)
|
|
}
|
|
if conf.SpanContextFunc == nil {
|
|
conf.SpanContextFunc = defaultSpanContextFunc()
|
|
}
|
|
return conf
|
|
}
|
|
|
|
// Option applies an option to a config.
|
|
type Option interface {
|
|
Apply(*config)
|
|
|
|
// A private method to prevent users implementing the
|
|
// interface and so future additions to it will not
|
|
// violate compatibility.
|
|
private()
|
|
}
|
|
|
|
type option struct{}
|
|
|
|
func (option) private() {}
|
|
|
|
type spanContextFuncOption struct {
|
|
option
|
|
SpanContextFunc func(context.Context) trace.SpanContext
|
|
}
|
|
|
|
func (o spanContextFuncOption) Apply(c *config) {
|
|
c.SpanContextFunc = o.SpanContextFunc
|
|
}
|
|
|
|
// WithSpanContextFunc sets the SpanContextFunc used to generate a new Spans
|
|
// context from a parent SpanContext.
|
|
func WithSpanContextFunc(f func(context.Context) trace.SpanContext) Option {
|
|
return spanContextFuncOption{SpanContextFunc: f}
|
|
}
|
|
|
|
type spanRecorderOption struct {
|
|
option
|
|
SpanRecorder *SpanRecorder
|
|
}
|
|
|
|
func (o spanRecorderOption) Apply(c *config) {
|
|
c.SpanRecorder = o.SpanRecorder
|
|
}
|
|
|
|
// WithSpanRecorder sets the SpanRecorder to use with the TracerProvider for
|
|
// testing.
|
|
func WithSpanRecorder(sr *SpanRecorder) Option {
|
|
return spanRecorderOption{SpanRecorder: sr}
|
|
}
|
|
|
|
// SpanRecorder performs operations to record a span as it starts and ends.
|
|
// It is designed to be concurrent safe and can by used by multiple goroutines.
|
|
type SpanRecorder struct {
|
|
startedMu sync.RWMutex
|
|
started []*Span
|
|
|
|
doneMu sync.RWMutex
|
|
done []*Span
|
|
}
|
|
|
|
// OnStart records span as started.
|
|
func (ssr *SpanRecorder) OnStart(span *Span) {
|
|
ssr.startedMu.Lock()
|
|
defer ssr.startedMu.Unlock()
|
|
ssr.started = append(ssr.started, span)
|
|
}
|
|
|
|
// OnEnd records span as completed.
|
|
func (ssr *SpanRecorder) OnEnd(span *Span) {
|
|
ssr.doneMu.Lock()
|
|
defer ssr.doneMu.Unlock()
|
|
ssr.done = append(ssr.done, span)
|
|
}
|
|
|
|
// Started returns a copy of all started Spans in the order they were started.
|
|
func (ssr *SpanRecorder) Started() []*Span {
|
|
ssr.startedMu.RLock()
|
|
defer ssr.startedMu.RUnlock()
|
|
started := make([]*Span, len(ssr.started))
|
|
for i := range ssr.started {
|
|
started[i] = ssr.started[i]
|
|
}
|
|
return started
|
|
}
|
|
|
|
// Completed returns a copy of all ended Spans in the order they were ended.
|
|
func (ssr *SpanRecorder) Completed() []*Span {
|
|
ssr.doneMu.RLock()
|
|
defer ssr.doneMu.RUnlock()
|
|
done := make([]*Span, len(ssr.done))
|
|
for i := range ssr.done {
|
|
done[i] = ssr.done[i]
|
|
}
|
|
return done
|
|
}
|