You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spec requires SpanProcesor.OnStart to receive the span and parentcontext (https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#onstart).
The .NET Implementation only provides Activity to OnStart on ActivityProcessor, and does not explicitly provide a parent Context.
However, it is possible to use Activity.Current.Parent.ActivityContext, and Baggage.Current to access parent ActivityContext, and Baggage.
Due to the difference in Activity semantics, and the way context is handled, it is not clear if we should mark "+" or "-" for the spec-compliance-matrix "SpanProcessor.OnStart receives parent Context".
Same issue for Sampler as well.
Marking "-" for these entries now.
The text was updated successfully, but these errors were encountered:
This issue was marked stale due to lack of activity and will be closed in 7 days. Commenting will instruct the bot to automatically remove the label. This bot runs once per day.
Spec requires SpanProcesor.OnStart to receive the span and parentcontext (https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#onstart).
The .NET Implementation only provides Activity to OnStart on ActivityProcessor, and does not explicitly provide a parent
Context
.However, it is possible to use
Activity.Current.Parent.ActivityContext
, andBaggage.Current
to access parent ActivityContext, and Baggage.Due to the difference in Activity semantics, and the way context is handled, it is not clear if we should mark "+" or "-" for the spec-compliance-matrix "SpanProcessor.OnStart receives parent Context".
Same issue for Sampler as well.
Marking "-" for these entries now.
The text was updated successfully, but these errors were encountered: