12 lines
366 B
Ruby
12 lines
366 B
Ruby
Sentry.init do |config|
|
|
config.release = Retrospring::Version.to_s
|
|
|
|
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
|
|
config.traces_sample_rate = 0.25
|
|
end
|