Upgrade to newest Sentry
This commit is contained in:
@ -1,21 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'concurrent'
|
||||
|
||||
Rails.application.tap do |app|
|
||||
pool = ::Concurrent::ThreadPoolExecutor.new(max_queue: 10)
|
||||
|
||||
Raven.configure do |config|
|
||||
config.sanitize_fields = app.config.filter_parameters.map(&:to_s)
|
||||
|
||||
config.processors -= [Raven::Processor::PostData] # Do this to send POST data
|
||||
# config.excluded_exceptions -= ['ActionController::InvalidAuthenticityToken']
|
||||
|
||||
config.async = lambda do |event|
|
||||
pool.post { ::Raven.send_event(event) }
|
||||
end
|
||||
|
||||
# Do not sent full list of gems with each event
|
||||
config.send_modules = false
|
||||
end
|
||||
end
|
16
config/initializers/sentry.rb
Normal file
16
config/initializers/sentry.rb
Normal file
@ -0,0 +1,16 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
Sentry.init do |config|
|
||||
# Do not send full list of gems with each event
|
||||
config.send_modules = false
|
||||
|
||||
# Send some more data, such as request bodies
|
||||
config.send_default_pii = true
|
||||
|
||||
# Strip sensitive user data such as passwords from event annotations
|
||||
filter = ActionDispatch::Http::ParameterFilter.new(Rails.application.config.filter_parameters)
|
||||
config.before_send = lambda do |event, _hint|
|
||||
event.request.data = filter.filter(event.request.data)
|
||||
event
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user