-
Notifications
You must be signed in to change notification settings - Fork 678
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add native support for threading (new instrumentation package) #737
Comments
Currently, whats the best way to propagate tracing context across threads? I have been looking for it, but cannot find any reference snippet |
Passing context as an function argument to the thread and then setting the received context on the other side. There is no automated solution. |
I did it by passing context and then re-attaching it:
Then the boto3 methods are called passing current context:
|
@pridhi-arora, you will be working on this as part of the outreachy program. Please leave a comment here so that I can assign this to you. |
Thanks, @srikanthccv. Looking forward to work on this. |
What do we mean by |
@bobthemighty for some reason I can't assign you to this issue 🤔 apparently you need to leave a comment here first. |
@ocelotl like this? |
@srikanthccv and @ocelotl, any update news for this PR? or could I provide the PR about this threading feature? |
OpenCensus has native integration for the threading module that automatically propagates tracing context across threads. It would be nice to port it over to OpenTelemetry.
OpenCensus Threading integration: https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-threading
The text was updated successfully, but these errors were encountered: