Hello,

I have some @ApplicationScoped and @Traced Beans which methods are
called from the camel route (camel-quarkus). The traces are sent to
jaeger, but they don't have a common parent span. How can I start a
span for an exchange, so that all subsequent calls to the beans would
have the same parent span?

In the example I'd want to achieve the trace containing two spans
(methodA, methodB)

from("direct:start)
    .split()
      .process(start stracing)
      .process(e -> bean1.methodA)
      .process(e -> bean2.methodB)
   .end()



Thanks!

Reply via email to