I am trying to understand the purpose of setting this property in the application.properties
quarkus.opentelemetry.propagators=tracecontext,baggage,jaeger
I know the tracecontext and baggage are default. Not sure what the jaeger or this property itself does. We have Jaeger collector and i am able to see all the traces/spans without setting this property. Looking at the docs, it seems this has some vital behavior. Any idea what i am missing here and how the flow works without setting this property with jaeger collector
Thank you SG
quarkus.opentelemetry.propagatorsor the new property for Quarkus v3.x+:quarkus.otel.propagatorswill allow you to use one or more propagation frameworks. In the example you give, headers fortracecontext,baggage,jaegerwill be added to the outbound requests.tracecontextandbaggagewill use the standard W3C headers.jaegerwill use the Jaeger native propagation format, which also includes the baggage.You can say that you are duplicating the context and the baggage data in 2 different formats, on the outbound request. Upon receiving the request, external systems understanding the default W3C will use the
tracecontextandbaggageheaders, systems understanding Jaeger format will use the data on thejaegerheader.For more details check the quarkus.otel.propagators property and the propagators section of the Quarkus OpenTelemetry guide. There, you can explore guidelines on integrating additional libraries into Quarkus to enable support for non-standard propagation mechanisms permitted by the Java implementation of OpenTelemetry.