We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2e3399 commit 6438ca0Copy full SHA for 6438ca0
1 file changed
notification_service/settings.py
@@ -5,6 +5,7 @@
5
import environ
6
import sentry_sdk
7
from django.utils.translation import gettext_lazy as _
8
+from sentry_sdk.integrations.django import DjangoIntegration
9
10
checkout_dir = environ.Path(__file__) - 2
11
assert os.path.exists(checkout_dir("manage.py"))
@@ -80,6 +81,7 @@
80
81
environment=env("SENTRY_ENVIRONMENT"),
82
enable_tracing=env.bool("SENTRY_ENABLE_TRACING"),
83
traces_sample_rate=env.float("SENTRY_TRACES_SAMPLE_RATE"),
84
+ integrations=[DjangoIntegration()],
85
)
86
87
MEDIA_ROOT = env("MEDIA_ROOT")
0 commit comments