Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.04 KB

File metadata and controls

34 lines (23 loc) · 1.04 KB

OpenTelemetry Django Tracing

pypi

This library allows tracing requests for Django applications.

Installation

pip install opentelemetry-ext-django

Configuration

Exclude lists

Excludes certain hosts and paths from being tracked. Pass in comma delimited string into environment variables. Host refers to the entire url and path refers to the part of the url after the domain. Host matches the exact string that is given, where as path matches if the url starts with the given excluded path.

Excluded hosts: OPENTELEMETRY_PYTHON_DJANGO_EXCLUDED_HOSTS Excluded paths: OPENTELEMETRY_PYTHON_DJANGO_EXCLUDED_PATHS

References