Replies: 0 comments 1 reply
-
I'm going to transfer this to the instrumentation repository, since it seems to be related to how to write quarkus-friendly instrumentation for redirects. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using quarkus 3.4.3 and latest opentelemetry there. I want whole my flow be linked and to see it inside zipkin/jager (no matter). But whan I have redirects in my code -> than I
ll always have separate track and new traceId flow.
I cannot always pass traceparent header because of ui (in that case secured cookies could be used so I can store state). But adding as a header doesn't help to link to the parent.
Tried to add parent to the context with next code
`String[] values = traceparentCookie.split("-");
it creates new span and attaches to base process as a last one and then starts new trace with needed me endpoint. It's also created as an empty one without tags or any info.
Overall what I want: to link one span with another one retrieving all needed tags. Couldn't find solution meanwhile.
Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions