From 8a8aafec81386b3a02e1d8e32bc3128e99206e39 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 12 Dec 2021 14:38:24 +0100 Subject: [PATCH] root: enable boto3 sentry integration Signed-off-by: Jens Langhammer --- authentik/root/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/authentik/root/settings.py b/authentik/root/settings.py index 8feb335d7..b2a063052 100644 --- a/authentik/root/settings.py +++ b/authentik/root/settings.py @@ -24,6 +24,7 @@ import structlog from celery.schedules import crontab from sentry_sdk import init as sentry_init from sentry_sdk.api import set_tag +from sentry_sdk.integrations.boto3 import Boto3Integration from sentry_sdk.integrations.celery import CeleryIntegration from sentry_sdk.integrations.django import DjangoIntegration from sentry_sdk.integrations.redis import RedisIntegration @@ -421,6 +422,7 @@ if _ERROR_REPORTING: DjangoIntegration(transaction_style="function_name"), CeleryIntegration(), RedisIntegration(), + Boto3Integration(), ], before_send=before_send, release=f"authentik@{__version__}",