diff --git a/requirements.txt b/requirements.txt index 4e269234d..60263e0cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ pulsectl==20.5.1 pytz==2020.1 pyudev==0.22.0 ruamel.yaml==0.15.100 -sentry-sdk==0.18.0 +sentry-sdk==0.19.1 uvloop==0.14.0 voluptuous==0.12.0 yarl==1.5.1 diff --git a/supervisor/bootstrap.py b/supervisor/bootstrap.py index ddb00bc9b..cb14bd816 100644 --- a/supervisor/bootstrap.py +++ b/supervisor/bootstrap.py @@ -301,7 +301,8 @@ def setup_diagnostics(coresys: CoreSys) -> None: sentry_sdk.init( dsn="https://9c6ea70f49234442b4746e447b24747e@o427061.ingest.sentry.io/5370612", before_send=lambda event, hint: filter_data(coresys, event, hint), - max_breadcrumbs=30, + auto_enabling_integrations=False, integrations=[AioHttpIntegration(), sentry_logging], release=SUPERVISOR_VERSION, + max_breadcrumbs=30, )