Skip to content

Commit

Permalink
Merge pull request #5884 from akatsoulas/sentry-sample
Browse files Browse the repository at this point in the history
Set sentry sampling to 25%
  • Loading branch information
akatsoulas authored Feb 8, 2024
2 parents 89fa430 + dc218e6 commit e0effd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitsune/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ def filter_exceptions(event, hint):
server_name=PLATFORM_NAME,
environment=config("SENTRY_ENVIRONMENT", default=""),
before_send=filter_exceptions,
sample_rate=config("SENTRY_SAMPLE_RATE", 1.0),
sample_rate=config("SENTRY_SAMPLE_RATE", 0.25),
)

# Dead Man Snitches
Expand Down

0 comments on commit e0effd3

Please sign in to comment.