traefik/vendor/github.com/opentracing/opentracing-go/globaltracer.go

43 lines
1.4 KiB
Go
Raw Normal View History

2018-01-10 16:48:04 +00:00
package opentracing
2019-04-05 09:58:06 +00:00
type registeredTracer struct {
tracer Tracer
isRegistered bool
}
2018-01-10 16:48:04 +00:00
var (
2019-04-05 09:58:06 +00:00
globalTracer = registeredTracer{NoopTracer{}, false}
2018-01-10 16:48:04 +00:00
)
// SetGlobalTracer sets the [singleton] opentracing.Tracer returned by
// GlobalTracer(). Those who use GlobalTracer (rather than directly manage an
// opentracing.Tracer instance) should call SetGlobalTracer as early as
// possible in main(), prior to calling the `StartSpan` global func below.
// Prior to calling `SetGlobalTracer`, any Spans started via the `StartSpan`
// (etc) globals are noops.
func SetGlobalTracer(tracer Tracer) {
2019-04-05 09:58:06 +00:00
globalTracer = registeredTracer{tracer, true}
2018-01-10 16:48:04 +00:00
}
// GlobalTracer returns the global singleton `Tracer` implementation.
// Before `SetGlobalTracer()` is called, the `GlobalTracer()` is a noop
// implementation that drops all data handed to it.
func GlobalTracer() Tracer {
2019-04-05 09:58:06 +00:00
return globalTracer.tracer
2018-01-10 16:48:04 +00:00
}
// StartSpan defers to `Tracer.StartSpan`. See `GlobalTracer()`.
func StartSpan(operationName string, opts ...StartSpanOption) Span {
2019-04-05 09:58:06 +00:00
return globalTracer.tracer.StartSpan(operationName, opts...)
2018-01-10 16:48:04 +00:00
}
// InitGlobalTracer is deprecated. Please use SetGlobalTracer.
func InitGlobalTracer(tracer Tracer) {
SetGlobalTracer(tracer)
}
2019-04-05 09:58:06 +00:00
// IsGlobalTracerRegistered returns a `bool` to indicate if a tracer has been globally registered
func IsGlobalTracerRegistered() bool {
return globalTracer.isRegistered
}