opentelemetry-python-contrib/instrumentation/opentelemetry-instrumentati...
Leighton Chen ecd0c69835 chore: bump dev version (#1235) 2020-10-21 22:22:58 -07:00
..
src/opentelemetry/instrumentation/pyramid chore: bump dev version (#1235) 2020-10-21 22:22:58 -07:00
tests Use is_recording flag in aiopg, asyncpg, dbapi, psycopg2, pymemcache, pymongo, redis, sqlalchemy instrumentations (#1212) 2020-10-21 22:22:58 -07:00
CHANGELOG.md release: updating changelogs and version to 0.13b0 (#1129) 2020-10-21 22:22:58 -07:00
LICENSE Rename web framework packages from "ext" to "instrumentation" (#961) 2020-10-21 22:22:58 -07:00
MANIFEST.in Rename web framework packages from "ext" to "instrumentation" (#961) 2020-10-21 22:22:58 -07:00
README.rst Rename web framework packages from "ext" to "instrumentation" (#961) 2020-10-21 22:22:58 -07:00
setup.cfg chore: bump dev version (#1235) 2020-10-21 22:22:58 -07:00
setup.py Rename web framework packages from "ext" to "instrumentation" (#961) 2020-10-21 22:22:58 -07:00

README.rst

OpenTelemetry Pyramid Instrumentation
=====================================

|pypi|

.. |pypi| image:: https://badge.fury.io/py/opentelemetry-instrumentation-pyramid.svg
   :target: https://pypi.org/project/opentelemetry-instrumentation-pyramid/

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
----------
* `OpenTelemetry Pyramid Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/instrumentation/pyramid/pyramid.html>`_
* `OpenTelemetry Project <https://opentelemetry.io/>`_