Metadata-Version: 2.1
Name: opentelemetry-ext-django
Version: 0.8b0
Summary: OpenTelemetry Instrumentation for Django
Home-page: https://github.com/open-telemetry/opentelemetry-python/tree/master/ext/opentelemetry-ext-django
Author: OpenTelemetry Authors
Author-email: cncf-opentelemetry-contributors@lists.cncf.io
License: Apache-2.0
Description: OpenTelemetry Django Tracing
        ============================
        
        |pypi|
        
        .. |pypi| image:: https://badge.fury.io/py/opentelemetry-ext-django.svg
           :target: https://pypi.org/project/opentelemetry-ext-django/
        
        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
        ----------
        
        * `Django <https://www.djangoproject.com/>`_
        * `OpenTelemetry Django Tracing <https://opentelemetry-python.readthedocs.io/en/latest/ext/django/django.html>`_
        * `OpenTelemetry Project <https://opentelemetry.io/>`_
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.4
Description-Content-Type: text/x-rst
Provides-Extra: test
