Metadata-Version: 2.1
Name: mongodb-sentry-integration
Version: 1.0.1
Summary: A integration of MongoDB for the Sentry's Python SDK
Home-page: https://github.com/JoeVictor22/mongo_integration_sentry_python_sdk
Author: Joel Castro
Author-email: joelvictor1746@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE

# mongodb-sentry-integration
Integration of MongoDB for the Sentry's Python SDK.

Check on [pypi](https://pypi.org/project/mongodb-sentry-integration/)

### Install

```shell
pip install mongodb-sentry-integration
```

### Configuration

```python
import sentry_sdk
from sentry_mongo.integrations import MongoIntegration

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

### Usage

- TODO
