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.42b0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd6189f905dfa7da4b42606798720816b59a571b4c5d2c5cca4bf41a03ecf8a0 |
|
MD5 | 700c32330cdc184ceb2a8e66db4e8bdb |
|
BLAKE2b-256 | 4ef4ff38d89fb6fdc1b246dac77b8cd5cabe4326eeb5f65b796cb3fa6e7149c9 |
Hashes for opentelemetry_instrumentation_urllib3-0.42b0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69d9e452ebf760fd8ee8cfe44798c276b5133944e475ca82e62d2aad4d4f6a3e |
|
MD5 | c1395190617794d1f153bf459a4b3d4b |
|
BLAKE2b-256 | 2c236a3958d0fcf534041f04576634489916b851cbc8d68598cc5b89587cc51e |