Replies: 2 comments 2 replies
-
From what I see Istio supports multi-header format, did you use multi format or single ? |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
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
-
I was trying to integrate OTEL with Istio as I have Istio in production environment
since one of the features that istio support is distributed tracing on Infrastructure level, I've installed jaeger following this https://istio.io/latest/docs/tasks/observability/distributed-tracing/jaeger/
But there were some problems that I had
1 - context propagation is not handled in a good. you need to pass headers through every request (url)
2 - also sometimes I will need to set custom span on my codebase level (so it's better to use OTEL)
So I started to use OTEL in a small repo here Foo -> Bar -> Baz.
But I had a problem
After using b3-propagator (following this doc) the trace showed as expected but there are warning (invalid parent span IDs) in every spans in jaeger dashboard as attached in the image
Beta Was this translation helpful? Give feedback.
All reactions