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
Hi, We are using sleuth camel.
We get the traces from the API and carry forward the trace in b3 header to camel.
Everything was working fine, but then we started using the threads() in the route, after that all the trace is not getting carried forward and is broken.
We are not able to visualize the traces.
Before: working
from(kafkaProperties)
.routeId(ROUTE_ID)
.process()..
After: Not working
from(kafkaProperties)
.threads()
.executorService(executorService)
.routeId(ROUTE_ID)
.process()..