Integration of MongoDB for the Sentry's Python SDK.
Check on pypi
pip install mongodb-sentry-integration
import sentry_sdk
from sentry_mongo.integrations import MongoIntegration
sentry_sdk.init(
dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
integrations=[
MongoIntegration(),
],
)
- TODO