Source File
context.go
Belonging Package
go.opentelemetry.io/otel/trace
// Copyright The OpenTelemetry Authors// SPDX-License-Identifier: Apache-2.0package trace // import "go.opentelemetry.io/otel/trace"importtype traceContextKeyType intconst currentSpanKey traceContextKeyType = iota// ContextWithSpan returns a copy of parent with span set as the current Span.func ( context.Context, Span) context.Context {return context.WithValue(, currentSpanKey, )}// ContextWithSpanContext returns a copy of parent with sc as the current// Span. The Span implementation that wraps sc is non-recording and performs// no operations other than to return sc as the SpanContext from the// SpanContext method.func ( context.Context, SpanContext) context.Context {return ContextWithSpan(, nonRecordingSpan{sc: })}// ContextWithRemoteSpanContext returns a copy of parent with rsc set explicitly// as a remote SpanContext and as the current Span. The Span implementation// that wraps rsc is non-recording and performs no operations other than to// return rsc as the SpanContext from the SpanContext method.func ( context.Context, SpanContext) context.Context {return ContextWithSpanContext(, .WithRemote(true))}// SpanFromContext returns the current Span from ctx.//// If no Span is currently set in ctx an implementation of a Span that// performs no operations is returned.func ( context.Context) Span {if == nil {return noopSpanInstance}if , := .Value(currentSpanKey).(Span); {return}return noopSpanInstance}// SpanContextFromContext returns the current Span's SpanContext.func ( context.Context) SpanContext {return SpanFromContext().SpanContext()}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |