opentracing-python-instrumentation icon indicating copy to clipboard operation
opentracing-python-instrumentation copied to clipboard

A collection of Python instrumentation tools for the OpenTracing API

Results 22 opentracing-python-instrumentation issues
Sort by recently updated
recently updated
newest added

It appears Uber removed my admin permissions to this repo after I left the company, so booking an issue as a form of announcement. The OpenTracing APIs & project have...

Tornado 6 doesn't have stack context mechanism and became asyncio framework. But `TornadoScopeManager` and helper `span_in_stack_context` using stack context explicitly and limiting version of Tornado that can be used. That's...

Tornado 6 does not contain the StackContext used in the current implementation. How could we support Tornado 6? Should one of the already-implemented ScopeManagers be used? Should the [contextvars](https://docs.python.org/3/library/contextvars.html) module...

While using `opentracing-python-instrumentation` for Postgres connection I noticed that the calls made inside the python `with resources` block are not being traced. The DB calls made in the following code...

Using opentracing-instrumentation==3.3.1, opentracing==2.4.0, jaeger-client==4.3.0. ### What we want to achieve Based on HTTP status code we want to add warning & other tags to our **HTTP get span**, tried to...

I'd like to propose that the `tornado` dependency is removed from `install_requires` and moved to the `extras_require` to make it conditional, even if #83 is being worked on in parallel....

opentracing-python issue [#115](https://github.com/opentracing/opentracing-python/issues/115) claims to have resolved this error. However, I still get the error with the latest pip packages. Is this error unique to opentracing-instrumentation ? pip packages: ```...

When using Tornado 5 it's common to start migrating to `async/await` syntaxes. However, @traced_function only understands Tornado's Futures but not necessarily AsyncIO coroutines. This PR adds supports to it without...

For a few of my users, they'd like to use this library (for it's depth with db libs, redis, and requests / urllib) with the opentracing [python-django](https://github.com/opentracing-contrib/python-django) [middleware](https://github.com/opentracing-contrib/python-django/blob/master/django_opentracing/middleware.py). Would the...

@Jamim I'm interested in your thoughts. One of our users complained about getting this error: ```python # .../python2/local/lib/python2.7/site-packages/opentracing_instrumentation/client_hooks/boto3.pyc in perform_call(self, original_func, kind, service_name, operation_name, *args, **kwargs) 135 span.set_tag('boto3.service_name', service_name) 136...