Metadata-Version: 2.1
Name: opentelemetry-instrumentation
Version: 0.15b0
Summary: Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python
Home-page: https://github.com/open-telemetry/opentelemetry-python/tree/master/opentelemetry-instrumentation
Author: OpenTelemetry Authors
Author-email: cncf-opentelemetry-contributors@lists.cncf.io
License: Apache-2.0
Description: OpenTelemetry Instrumentation
        =============================
        
        |pypi|
        
        .. |pypi| image:: https://badge.fury.io/py/opentelemetry-instrumentation.svg
           :target: https://pypi.org/project/opentelemetry-instrumentation/
        
        Installation
        ------------
        
        ::
        
            pip install opentelemetry-instrumentation
        
        
        This package provides a couple of commands that help automatically instruments a program:
        
        opentelemetry-instrument
        ------------------------
        
        ::
        
            opentelemetry-instrument python program.py
        
        The code in ``program.py`` needs to use one of the packages for which there is
        an OpenTelemetry integration. For a list of the available integrations please
        check `here <https://opentelemetry-python.readthedocs.io/en/stable/index.html#integrations>`_
        
        
        opentelemetry-bootstrap
        -----------------------
        
        ::
        
            opentelemetry-bootstrap --action=install|requirements
        
        This commands inspects the active Python site-packages and figures out which
        instrumentation packages the user might want to install. By default it prints out
        a list of the suggested instrumentation packages which can be added to a requirements.txt
        file. It also supports installing the suggested packages when run with :code:`--action=install`
        flag.
        
        References
        ----------
        
        * `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
