Skip to content

JoeVictor22/mongo_integration_sentry_python_sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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