SQLAlchemy
(New in version 0.11.0)
The SQLAlchemy integration captures queries from SQLAlchemy as breadcrumbs. The integration is being tested with SQLAlchemy 1.2 or later.
Copied
import sentry_sdk
from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
integrations=[SqlalchemyIntegration()]
)