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
doesn't require registering local baggage properties, but setting the baggage is more complicated:
it is possible to set only 1 baggage. calling createBaggageInScope will cancel all previous baggages
a new observation must be started with Micrometer.observation
overridefunfilter(exchange:ServerWebExchange, chain:WebFilterChain): Mono<Void> {
tracer.createBaggageInScope("localBaggage", "value") // the value can also be set via "contextWrite", but not via "doOnSubscribe"return chain.filter(exchange)
.tap(reactor.core.observability.micrometer.Micrometer.observation(registry))
}
If we look at Sleuth & Boot tracing Baggage features comparison we're still missing two.
Local Baggage Sleuth implementation
Tagged Baggage Sleuth implementation
The text was updated successfully, but these errors were encountered: