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
currently we only propagate Observation via ObservationThreadLocalAccessors. Users might want to just use the Tracing API and should be allowed to propagate tracing info between e.g. threads.
without this change you can't propagate just micrometer tracing spans with context propagation
with this change we're introducing an ObservationAwareSpanThreadLocalAccessor that is a ThreadLocalAccessor that knows about the existence of the ObservationThreadLocalAccessor. If OTLA started a span, the OASTLA will back off. If there was no observation and no span there, OASTLA will return an instance of a span. Since ordering matters, OAWSTLA will not be registered in the SPI mechanism, the user will need to set the ContextPropagation registry manually to ensure that OASTLA is registered AFTER OTLA.
fixesgh-206
currently we only propagate
Observation
viaObservationThreadLocalAccessor
s. Users might want to just use the Tracing API and should be allowed to propagate tracing info between e.g. threads.related issue spring-projects/spring-boot#34622
The text was updated successfully, but these errors were encountered: