From 9621ebe9b96a2389af52cbcb11991ad0db65da32 Mon Sep 17 00:00:00 2001 From: Evan Tung Date: Mon, 29 Apr 2024 10:53:09 -0400 Subject: [PATCH] Update Sentry trace rate in settings.py --- sibyl/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sibyl/settings.py b/sibyl/settings.py index cedb329..339ed8b 100644 --- a/sibyl/settings.py +++ b/sibyl/settings.py @@ -164,11 +164,11 @@ dsn="https://5db3e0ba1c5afa81a69054606357b5c1@o4507124907638784.ingest.us.sentry.io/4507124912357376", # Set traces_sample_rate to 1.0 to capture 100% # of transactions for performance monitoring. - traces_sample_rate=0.25, + traces_sample_rate=1/30, # Set profiles_sample_rate to 1.0 to profile 100% # of sampled transactions. # We recommend adjusting this value in production. - profiles_sample_rate=0.25, + profiles_sample_rate=1/30, enable_tracing=True, environment=os.getenv("ENV") )