opentelemetry-python-contrib
opentelemetry-python-contrib copied to clipboard
OpenTelemetry instrumentation for Python modules
# Description The `path` value of the ASGI `scope` is a non-generalized path. This is not an issue in other frameworks such as fastapi or falsk where the templatized path...
# Description Fixes #2698 ## Type of change Please delete options that are not relevant. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New...
# Description The logs are emited via `LoggingHandler` as a handler of the root logger. Unfortunatelly when there is a Logger instance with disabled propagation with `logger.propagate=False`, the root logger...
# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change....
# Description Adds NoOpTracerProvider test cases for sqllite3 instrumentation. Fixes #964 # How Has This Been Tested? tox -e test-instrumentation-sqlite3 instrumentation/opentelemetry-instrumentation-sqlite3/tests/test_sqlite3.py::TestSQLite3::test_callproc PASSED [ 25%] instrumentation/opentelemetry-instrumentation-sqlite3/tests/test_sqlite3.py::TestSQLite3::test_execute PASSED [ 50%] instrumentation/opentelemetry-instrumentation-sqlite3/tests/test_sqlite3.py::TestSQLite3::test_executemany PASSED...
# Description Fixing baggage support in `opentelemetry-instrumentation-aws-lambda` package. After determining the parent context (`_determine_parent_context()`), it was only used to create the wrapper span, but wasn't attached to the global context....
### What problem do you want to solve? HTTP semantic convention stability migration for `opentelemetry-instrumentation-urllib `. Here is the [plan](https://github.com/open-telemetry/semantic-conventions/blob/main/docs/http/migration-guide.md) ### Describe the solution you'd like Implement the semconv opt-in...
# Description Audit and test otel instrumentation for httpx Fixes #979 ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes...
### Describe your environment OS: Ubuntu Python 3.10.12 Name: opentelemetry-instrumentation-httpx Version: 0.46b0 ### What happened? code from lib ```python request_hook = kwargs.get("request_hook") response_hook = kwargs.get("response_hook") async_request_hook = kwargs.get("async_request_hook", request_hook) async_response_hook...