/mongo_integration_sentry_python_sdk

A integration of MongoDB for the Sentry's Python SDK

Primary LanguagePythonMIT LicenseMIT

mongodb-sentry-integration

Integration of MongoDB for the Sentry's Python SDK.

Check on pypi

Install

pip install mongodb-sentry-integration

Configuration

import sentry_sdk
from sentry_mongo.integrations import MongoIntegration

sentry_sdk.init(
    dsn="https://examplePublicKey@o0.ingest.sentry.io/0",
    integrations=[
        MongoIntegration(),
    ],
)

Usage

  • TODO