opentelemetry-python icon indicating copy to clipboard operation
opentelemetry-python copied to clipboard

OpenTelemetry Python API and SDK

Results 403 opentelemetry-python issues
Sort by recently updated
recently updated
newest added

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 =...

bug

I see "Requirement already satisfied" many times in the CI logs. Investigate if this is slowing runs down.

build & infra

[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.

feature-request