Metadata-Version: 2.1
Name: opentelemetry-instrumentation-flask
Version: 0.13b0
Summary: Flask instrumentation for OpenTelemetry
Home-page: https://github.com/open-telemetry/opentelemetry-python/tree/master/instrumentation/opentelemetry-instrumentation-flask
Author: OpenTelemetry Authors
Author-email: cncf-opentelemetry-contributors@lists.cncf.io
License: Apache-2.0
Description: OpenTelemetry Flask Tracing
        ===========================
        
        |pypi|
        
        .. |pypi| image:: https://badge.fury.io/py/opentelemetry-instrumentation-flask.svg
           :target: https://pypi.org/project/opentelemetry-instrumentation-flask/
        
        This library builds on the OpenTelemetry WSGI middleware to track web requests
        in Flask applications.
        
        Installation
        ------------
        
        ::
        
            pip install opentelemetry-instrumentation-flask
        
        Configuration
        -------------
        
        Exclude lists
        *************
        To exclude certain URLs from being tracked, set the environment variable ``OTEL_PYTHON_FLASK_EXCLUDED_URLS`` with comma delimited regexes representing which URLs to exclude.
        
        For example,
        
        ::
        
            export OTEL_PYTHON_FLASK_EXCLUDED_URLS="client/.*/info,healthcheck"
        
        will exclude requests such as ``https://site/client/123/info`` and ``https://site/xyz/healthcheck``.
        
        References
        ----------
        
        * `OpenTelemetry Flask Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/instrumentation/flask/flask.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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.5
Description-Content-Type: text/x-rst
Provides-Extra: test
