Bo Stokholm

Results 3 comments of Bo Stokholm

Hi @sentrivana It is the experimental feature for logging and not the instrumentation. I have attached the code for my `sentry.init` Peak logs is 90k pr half hour. ```python sentry_sdk.init(...

```python def create_celery() -> Celery: """ Create a new Celery object and set the broker and result backend from config. """ sentry_mode = os.getenv("SENTRY_MODE", "prod") if sentry_mode != "dev": sentry_sdk.init(...

I want to give a little update. I changed it to initialize sentry in a `@worker_process_init.connect` instead of running it in the `create_celery` method. It has been running for some...