2021-12-28 09:32:03 -08:00
|
|
|
Sentry.init do |config|
|
2022-04-15 18:48:09 -07:00
|
|
|
config.release = Retrospring::Version.to_s
|
|
|
|
|
2021-12-28 09:32:03 -08:00
|
|
|
config.dsn = APP_CONFIG[:sentry_dsn]
|
|
|
|
config.breadcrumbs_logger = [:active_support_logger, :http_logger]
|
|
|
|
|
|
|
|
# Set tracesSampleRate to 1.0 to capture 100%
|
|
|
|
# of transactions for performance monitoring.
|
|
|
|
# We recommend adjusting this value in production
|
2021-12-31 02:59:07 -08:00
|
|
|
config.traces_sample_rate = 0.25
|
2023-01-28 13:10:14 -08:00
|
|
|
|
|
|
|
config.before_send do |event, hint|
|
|
|
|
if hint[:exception].is_a?(Errors::Base)
|
|
|
|
# These are used for user-facing errors, not when something goes wrong
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
event
|
|
|
|
end
|
2021-12-28 09:32:03 -08:00
|
|
|
end
|