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()..
New traces are getting created per processor
The text was updated successfully, but these errors were encountered:
Unfortunately, multithreading(splitting pipeline) is not supported by this lib, not sure if we going to invest time on that, but any help would be much appreciated.
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()..
New traces are getting created per processor
The text was updated successfully, but these errors were encountered: