How can i propagate context between different services using Pub/Sub? #2982
-
I've been digging through the docs for a while and do not see any special instrumentation for Pub/Sub. Just want to be able to propagate the context between spans in different services that communicates using Pub/Sub. Is there a recommended approach for this either by an instrumentation library or manual propagation? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Does this help https://opentelemetry.io/docs/instrumentation/python/cookbook/#manually-setting-span-context? The pub-sub library you are using may already be supported here, but if it's not, you can always use the above propagation mechanism to achieve that. |
Beta Was this translation helpful? Give feedback.
Does this help https://opentelemetry.io/docs/instrumentation/python/cookbook/#manually-setting-span-context? The pub-sub library you are using may already be supported here, but if it's not, you can always use the above propagation mechanism to achieve that.