opentracing-python
opentracing-python copied to clipboard
OpenTracing API for Python. 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163
I've been making some experiments with supporting Tornado 6 and found that "broken" Tornado scope manager doesn't cause errors in tests. For example: in this changes https://github.com/condorcet/opentracing-python/commit/91ad6c7e70623508db94eb9b6021250b4e1d7993 I replaced `tracer_stack_context`...
For your consideration ;) @tedsuo @yurishkuro @palazzem @pglombardo @indrekj
I'm opening this issue as I'm curious on whether we should adopt the (now merged) OT Java PR for deprecating finishing `Span`s upon `Scope.close()`. ### Problem For OT Java, finishing...
or alternatively we should add a [GRPC Format type](https://github.com/opentracing/opentracing-python/blob/master/opentracing/propagation.py#L45). We found a use case where GRPC requires lower-cased headers with the HTTP Propagator: https://github.com/instana/python-sensor/pull/76 I'm still undecided on how to...
Hello, How can we track the db transactions with opentracing tracer or jager tracer.Saw this code and trying to understand how we analyze a db instance within a span with...
Don't get me wrong. I love typing. But I think the current two examples (inbound, outbound) of the README are too long. I guess more could be done in the...
We can either emphasize safety by requiring tracer to always take copies of passed collections if it wants to store them, or emphasize performance by telling the caller that it...
``` import os,sys g_proj_path = os.path.dirname(os.path.abspath(__file__))+"/../" sys.path.append(g_proj_path) sys.path.append(g_proj_path+"module/") sys.path.append(g_proj_path+"website/") from gevent import monkey monkey.patch_all() from opentracing.scope_managers.gevent import GeventScopeManager import logging import time from jaeger_client import Config if __name__ == "__main__":...