You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
315 B
12 lines
315 B
Sentry.init do |config| |
|
config.dsn = ENV["SENTRY_DSN"] |
|
|
|
# Set traces_sample_rate to 1.0 to capture 100% |
|
# of transactions for performance monitoring. |
|
# We recommend adjusting this value in production. |
|
config.traces_sample_rate = 1.0 |
|
# or |
|
config.traces_sampler = lambda do |context| |
|
true |
|
end |
|
end
|
|
|