Lower Sentry trace sample rate to 10%

This commit is contained in:
Sebastian Serth
2021-05-12 23:20:03 +02:00
parent 276423fd30
commit 1d08a78d7d

View File

@ -7,5 +7,5 @@ Sentry.init do |config|
# Set tracesSampleRate to 1.0 to capture 100%
# of transactions for performance monitoring.
# We recommend adjusting this value in production
config.traces_sample_rate = 1.0
config.traces_sample_rate = 0.1
end