OpenTelemetry Pyramid Instrumentation¶
Pyramid instrumentation supporting pyramid, it can be enabled by
using PyramidInstrumentor
.
Usage¶
There are two methods to instrument Pyramid:
Method 1 (Instrument all Configurators):¶
from pyramid.config import Configurator
from opentelemetry.instrumentation.pyramid import PyramidInstrumentor
PyramidInstrumentor().instrument()
config = Configurator()
# use your config as normal
config.add_route('index', '/')
Method 2 (Instrument one Configurator):¶
from pyramid.config import Configurator
from opentelemetry.instrumentation.pyramid import PyramidInstrumentor
config = Configurator()
PyramidInstrumentor().instrument_config(config)
# use your config as normal
config.add_route('index', '/')
Using pyramid.tweens
setting:¶
If you use Method 2 and then set tweens for your application with the pyramid.tweens
setting,
you need to add opentelemetry.instrumentation.pyramid.trace_tween_factory
explicity to the list,
as well as instrumenting the config as shown above.
For example:
from pyramid.config import Configurator
from opentelemetry.instrumentation.pyramid import PyramidInstrumentor
settings = {
'pyramid.tweens', 'opentelemetry.instrumentation.pyramid.trace_tween_factory\nyour_tween_no_1\nyour_tween_no_2',
}
config = Configurator(settings=settings)
PyramidInstrumentor().instrument_config(config)
# use your config as normal.
config.add_route('index', '/')
Configuration¶
Exclude lists¶
To exclude certain URLs from being tracked, set the environment variable OTEL_PYTHON_PYRAMID_EXCLUDED_URLS
(or OTEL_PYTHON_EXCLUDED_URLS
as fallback) with comma delimited regexes representing which URLs to exclude.
For example,
export OTEL_PYTHON_PYRAMID_EXCLUDED_URLS="client/.*/info,healthcheck"
will exclude requests such as https://site/client/123/info
and https://site/xyz/healthcheck
.
Capture HTTP request and response headers¶
You can configure the agent to capture predefined HTTP headers as span attributes, according to the semantic convention.
Request headers¶
To capture predefined HTTP request headers as span attributes, set the environment variable OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST
to a comma-separated list of HTTP header names.
For example,
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_REQUEST="content-type,custom_request_header"
will extract content-type
and custom_request_header
from request headers and add them as span attributes.
It is recommended that you should give the correct names of the headers to be captured in the environment variable.
Request header names in pyramid are case insensitive and - characters are replaced by _. So, giving header name as CUStom_Header
in environment variable will be able capture header with name custom-header
.
The name of the added span attribute will follow the format http.request.header.<header_name>
where <header_name>
being the normalized HTTP header name (lowercase, with - characters replaced by _ ).
The value of the attribute will be single item list containing all the header values.
Example of the added span attribute,
http.request.header.custom_request_header = ["<value1>,<value2>"]
Response headers¶
To capture predefined HTTP response headers as span attributes, set the environment variable OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE
to a comma-separated list of HTTP header names.
For example,
export OTEL_INSTRUMENTATION_HTTP_CAPTURE_HEADERS_SERVER_RESPONSE="content-type,custom_response_header"
will extract content-type
and custom_response_header
from response headers and add them as span attributes.
It is recommended that you should give the correct names of the headers to be captured in the environment variable.
Response header names captured in pyramid are case insensitive. So, giving header name as CUStomHeader
in environment variable will be able capture header with name customheader
.
The name of the added span attribute will follow the format http.response.header.<header_name>
where <header_name>
being the normalized HTTP header name (lowercase, with - characters replaced by _ ).
The value of the attribute will be single item list containing all the header values.
Example of the added span attribute,
http.response.header.custom_response_header = ["<value1>,<value2>"]
Note
Environment variable names to capture http headers are still experimental, and thus are subject to change.
API¶
- class opentelemetry.instrumentation.pyramid.PyramidInstrumentor(*args, **kwargs)[source]¶
Bases:
opentelemetry.instrumentation.instrumentor.BaseInstrumentor
- instrumentation_dependencies()[source]¶
Return a list of python packages with versions that the will be instrumented.
The format should be the same as used in requirements.txt or setup.py.
For example, if an instrumentation instruments requests 1.x, this method should look like:
- def instrumentation_dependencies(self) -> Collection[str]:
return [‘requests ~= 1.0’]
This will ensure that the instrumentation will only be used when the specified library is present in the environment.
- Return type