I am trying to create open telemetry for my quarkus microservices with info from below:
https://quarkus.io/guides/opentelemetry
I have changed the application.properties with propagator setting, build.gradle as well as added the @WithSpan in the code. However, this is creating a new span for every method with the WithSpan annotation. How can I have the trace/span carried forward for each of the called methods so we can see the time taken for each of them? Also do i need to do anything else in the code for enabling tracing across multiple Quarkus services? I do see the trace separately for each of the services but it's not showing me the trace of flows from one service to the other. the tracingcontext is null
Thank you in advance
Best RegardsSG