How can i propagate context between different services using Pub/Sub? #2982
Answered
by
srikanthccv
nohasaayed
asked this question in
Q&A
|
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? |
Answered by
srikanthccv
Oct 24, 2022
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. |
0 replies
Answer selected by
nohasaayed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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.