Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 476 Bytes

File metadata and controls

28 lines (20 loc) · 476 Bytes

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://[email protected]/0",
    integrations=[
        MongoIntegration(),
    ],
)

Usage

  • TODO