mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:19:53 +01:00
11 lines
366 B
Ruby
11 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
|