opentelemetry-python
opentelemetry-python copied to clipboard
OpenTelemetry Python API and SDK
Our most basic example is this one: ``` python from opentelemetry import trace from opentelemetry.sdk.trace import TracerProvider from opentelemetry.sdk.trace.export import ( BatchSpanProcessor, ConsoleSpanExporter, ) trace.set_tracer_provider(TracerProvider()) trace.get_tracer_provider().add_span_processor( BatchSpanProcessor(ConsoleSpanExporter()) ) tracer =...
I see "Requirement already satisfied" many times in the CI logs. Investigate if this is slowing runs down.
[This](https://github.com/open-telemetry/opentelemetry-python/pull/2046/files#diff-dfe371d6c6c11f4c6c8a90f4b6b6b651f443f7591bf1644b97221b1db4f1b3f1R39) line from #2046 shows that auto instrumentation may be used in an unintended way, Protect auto instrumentation against this unintended usage.