I just follow this tutorial here https://quarkus.io/guides/opentelemetry to create a quarkus application with openTelemetry and jaeger.
It works fine, I can see all my requests in jaeger, but there is no response body.
My problem here is that I have several microservices communication with each other and sometimes one gets an error that stops the whole process, so I have to debbug one by one to find which service did fail. If I get this response body in jaeger this would be easily to identify which service trigger any exception.
So right now I don't have any response body in my jaeger and I don't know if jaeger doesn't show any response and I have to find another tool, or if there is some configuration I need to do in my opentelemetry to send it to jaeger.
Can someone help? There is any way to see http responses with openTelemetry?