From 22f6980bd0171824cb3cf9acf5d11d5df0b509f8 Mon Sep 17 00:00:00 2001 From: Marcus Patino Pan Date: Wed, 23 Oct 2024 15:49:12 +0100 Subject: [PATCH] ICMSLST-3021 - Sentry removed performance tracing --- web/utils/sentry.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/web/utils/sentry.py b/web/utils/sentry.py index 32666cf58..5d6eae7ef 100644 --- a/web/utils/sentry.py +++ b/web/utils/sentry.py @@ -17,10 +17,6 @@ def init_sentry(sentry_dsn: str, sentry_environment: str) -> None: dsn=sentry_dsn, environment=sentry_environment, integrations=[DjangoIntegration(), RedisIntegration()], - enable_tracing=True, - sample_rate=0.01, - traces_sample_rate=0.01, # reduce the number of performance traces - enable_backpressure_handling=True, # ensure that when sentry is overloaded, we back off and wait release=os.getenv("GIT_TAG"), )