From 0531c877f82621c4173eb336d0674a725a3e33d6 Mon Sep 17 00:00:00 2001 From: Evan Tung Date: Sun, 21 Apr 2024 19:04:07 -0400 Subject: [PATCH] Add environment for Sentry tracing in settings.py --- sibyl/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sibyl/settings.py b/sibyl/settings.py index d923244..f039a7f 100644 --- a/sibyl/settings.py +++ b/sibyl/settings.py @@ -169,5 +169,6 @@ # of sampled transactions. # We recommend adjusting this value in production. profiles_sample_rate=1.0, - enable_tracing=True + enable_tracing=True, + environment=os.getenv("ENV") )