Metadata-Version: 1.1
Name: opencensus-ext-sqlalchemy
Version: 0.1.2
Summary: OpenCensus SQLAlchemy Integration
Home-page: https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-sqlalchemy
Author: OpenCensus Authors
Author-email: census-developers@googlegroups.com
License: Apache-2.0
Description: OpenCensus SQLAlchemy Integration
        ============================================================================
        
        |pypi|
        
        .. |pypi| image:: https://badge.fury.io/py/opencensus-ext-sqlalchemy.svg
           :target: https://pypi.org/project/opencensus-ext-sqlalchemy/
        
        You can trace usage of the `sqlalchemy package`_, regardless of the underlying
        database, by specifying ``'sqlalchemy'`` to ``trace_integrations``.
        
        .. _SQLAlchemy package: https://pypi.org/project/SQLAlchemy
        
        .. note:: If you enable tracing of SQLAlchemy as well as the underlying database
            driver, you will get duplicate spans. Instead, just trace SQLAlchemy.
        
        Installation
        ------------
        
        ::
        
            pip install opencensus-ext-sqlalchemy
        
        Usage
        -----
        
        .. code:: python
        
            from opencensus.trace import config_integration
        
            config_integration.trace_integrations(['sqlalchemy'])
        
        References
        ----------
        
        * `OpenCensus Project <https://opencensus.io/>`_
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
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
