-
Hey all, we currently have some Java services manually instrumented with OpenTelemetry 1.0 exporting via the It is working well at the moment and we are looking into adding baggage to automatically propagate some cross cutting attributes like a customer's email. I did not see a lot of documentation or mention of baggage except for a few classes like the I was wondering if it's currently possible to have traces with baggage propagated to Jaeger. Are there any good examples or documentation available? If it's not, which components are still missing support? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I'm not sure what you mean by "have traces with baggage propagated to Jaeger". Baggage is an independent concern from traces, and will be propagated if you have a propagator installed (such as the W3CBaggagePropagator you mentioned). Are you looking to append baggage entries to spans? If so, you can easily write a SpanProcessor that does this when |
Beta Was this translation helpful? Give feedback.
I'm not sure what you mean by "have traces with baggage propagated to Jaeger". Baggage is an independent concern from traces, and will be propagated if you have a propagator installed (such as the W3CBaggagePropagator you mentioned).
Are you looking to append baggage entries to spans? If so, you can easily write a SpanProcessor that does this when
onStart()
is called.