1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 05:09:38 +02:00

Reduce Sentry sample rate

This commit is contained in:
Josh Pigford 2025-02-05 11:33:59 -06:00
parent 90f1ff8a0b
commit cf014bc24f

View file

@ -8,11 +8,11 @@ if ENV["SENTRY_DSN"].present?
# Set traces_sample_rate to 1.0 to capture 100% # Set traces_sample_rate to 1.0 to capture 100%
# of transactions for performance monitoring. # of transactions for performance monitoring.
# We recommend adjusting this value in production. # We recommend adjusting this value in production.
config.traces_sample_rate = 1.0 config.traces_sample_rate = 0.5
# Set profiles_sample_rate to profile 100% # Set profiles_sample_rate to profile 100%
# of sampled transactions. # of sampled transactions.
# We recommend adjusting this value in production. # We recommend adjusting this value in production.
config.profiles_sample_rate = 1.0 config.profiles_sample_rate = 0.5
end end
end end