Skip to content

Latest commit

 

History

History

opentelemetry-instrumentation-pyramid

OpenTelemetry Pyramid Instrumentation

pypi

Installation

pip install opentelemetry-instrumentation-pyramid

Exclude lists

To exclude certain URLs from being tracked, set the environment variable OTEL_PYTHON_PYRAMID_EXCLUDED_URLS 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.

References