Metadata-Version: 2.1
Name: opentelemetry-ext-flask
Version: 0.8b0
Summary: Flask tracing for OpenTelemetry (based on opentelemetry-ext-wsgi)
Home-page: https://github.com/open-telemetry/opentelemetry-python/tree/master/ext/opentelemetry-ext-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-ext-flask.svg
           :target: https://pypi.org/project/opentelemetry-ext-flask/
        
        This library builds on the OpenTelemetry WSGI middleware to track web requests
        in Flask applications.
        
        Installation
        ------------
        
        ::
        
            pip install opentelemetry-ext-flask
        
        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_FLASK_EXCLUDED_HOSTS
        Excluded paths: OPENTELEMETRY_PYTHON_FLASK_EXCLUDED_PATHS
        
        
        References
        ----------
        
        * `OpenTelemetry Flask Tracing <https://opentelemetry-python.readthedocs.io/en/latest/ext/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.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
