Skip to content

Commit

Permalink
🔧(sentry) reduce sentry traces_sample_rate
Browse files Browse the repository at this point in the history
traces_samples_rates was set to 1, thus sending every transaction to sentry
  • Loading branch information
revolunet authored and mjeammet committed Oct 7, 2024
1 parent cc86a3b commit e3d5802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/people/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ def post_setup(cls):
environment=cls.__name__.lower(),
release=get_release(),
integrations=[DjangoIntegration()],
traces_sample_rate=1.0,
traces_sample_rate=0.1,
)
with sentry_sdk.configure_scope() as scope:
scope.set_extra("application", "backend")
Expand Down

0 comments on commit e3d5802

Please sign in to comment.