mirror of
https://github.com/System-End/theseus.git
synced 2026-04-19 19:55:10 +00:00
8 lines
253 B
Ruby
8 lines
253 B
Ruby
Sentry.init do |config|
|
|
config.dsn = ENV["SENTRY_DSN"]
|
|
config.breadcrumbs_logger = [:active_support_logger, :http_logger]
|
|
config.enabled_environments = %w[production staging]
|
|
config.send_default_pii = true
|
|
|
|
config.traces_sample_rate = 0.1
|
|
end
|