docbrown/config/initializers/honeybadger.rb
rhymes 70e0e9b83a
[15 min fix] Fix some autoloading deprecation warnings (#13793)
* Fix autoloading for RateLimitChecker

* Fix autoloading for ForemStatsClient

* Fix autoloading for middlewares

* Move things to their proper place

* Move middleware usage to the proper place

* Re-add rest-client in datadog driver correctly

* Already required in config/initializers/middlewares.rb

* Bring that back

* Fix Honeybadger spec
2021-05-20 18:10:25 +02:00

56 lines
2.4 KiB
Ruby

# Can be used to implement more programatic error handling
# https://docs.honeybadger.io/lib/ruby/getting-started/ignoring-errors.html#ignore-programmatically
# rubocop:disable Metrics/BlockLength
Rails.application.reloader.to_prepare do
message_fingerprints = {
"SuspendedError" => "banned",
"Rack::Timeout::RequestTimeoutException" => "rack_timeout",
"Rack::Timeout::RequestTimeoutError" => "rack_timeout",
"PG::QueryCanceled" => "pg_query_canceled"
}
component_fingerprints = {
"internal" => "internal"
}
honeybadger_exceptions_to_ignore = [
ActiveRecord::QueryCanceled,
ActiveRecord::RecordNotFound,
Pundit::NotAuthorizedError,
RateLimitChecker::LimitReached,
]
# https://docs.honeybadger.io/lib/ruby/gem-reference/configuration.html
Honeybadger.configure do |config|
config.env = "#{ApplicationConfig['APP_DOMAIN']}-#{Rails.env}"
config.api_key = ApplicationConfig["HONEYBADGER_API_KEY"]
config.revision = ApplicationConfig["RELEASE_FOOTPRINT"]
# Prevent Ruby from exiting until all queued notices have been delivered to Honeybadger.
# When set to true(default), it can lead to a large number of errors causing a process to get stuck.
# To prevent this we set it to false ensuring that a process can exit quickly regardless of errors.
# Logging allows us to fill in gaps if we need to when errors get discarded.
config.send_data_at_exit = false
config.exceptions.ignore += honeybadger_exceptions_to_ignore
config.request.filter_keys += %w[authorization]
config.sidekiq.attempt_threshold = 10
config.breadcrumbs.enabled = true
config.before_notify do |notice|
notice.fingerprint = if notice.error_message&.include?("SIGTERM") && notice.component&.include?("feeds_import")
notice.error_message
elsif (msg_key = message_fingerprints.keys.detect do |k, _v|
notice.error_message&.include?(k)
end)
message_fingerprints[msg_key]
elsif (cmp_key = component_fingerprints.keys.detect do |k, _v|
notice.component&.include?(k)
end)
component_fingerprints[cmp_key]
end
end
end
end
# rubocop:enable Metrics/BlockLength