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.
::
pip install opencensus-ext-sqlalchemy
.. code:: python
from opencensus.trace import config_integration
config_integration.trace_integrations(['sqlalchemy'])
OpenCensus Project <https://opencensus.io/>
_