OpenTelemetry urllib3 instrumentation
Project description
This library allows tracing HTTP requests made by the urllib3 library.
Installation
pip install opentelemetry-instrumentation-urllib3
Configuration
Request/Response hooks
The urllib3 instrumentation supports extending tracing behavior with the help of request and response hooks. These are functions that are called back by the instrumentation right after a Span is created for a request and right before the span is finished processing a response respectively. The hooks can be configured as follows:
# `request` is an instance of urllib3.connectionpool.HTTPConnectionPool
def request_hook(span, request):
pass
# `request` is an instance of urllib3.connectionpool.HTTPConnectionPool
# `response` is an instance of urllib3.response.HTTPResponse
def response_hook(span, request, response):
pass
URLLib3Instrumentor().instrument(
request_hook=request_hook, response_hook=response_hook
)
Exclude lists
To exclude certain URLs from being tracked, set the environment variable OTEL_PYTHON_URLLIB3_EXCLUDED_URLS (or OTEL_PYTHON_EXCLUDED_URLS as fallback) with comma delimited regexes representing which URLs to exclude.
For example,
export OTEL_PYTHON_URLLIB3_EXCLUDED_URLS="client/.*/info,healthcheck"
will exclude requests such as https://site/client/123/info and https://site/xyz/healthcheck.
References
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for opentelemetry_instrumentation_urllib3-0.46b0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53f4a88baa8d7600ce558012f62562938f277aba92cfc76332c143d8209f87c2 |
|
MD5 | 05ba191c4ec042b3c658830badb05b51 |
|
BLAKE2b-256 | c07839a6bb817ac0fd47d493a43d9dbf42db9ffd4ce04b92ab4e2039c8abfd67 |
Hashes for opentelemetry_instrumentation_urllib3-0.46b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f8e3ed206e3faa2b2a141b89a831f97b5ebecff1df6950c3745bdc0ec7b8a6f |
|
MD5 | 81c5a1b787c84b3fa8aaa4ac8a3ffe56 |
|
BLAKE2b-256 | a4d0eda48a18d45de994fb89bb127c6466ef267bea66af49e429e9641e46e83b |