Bugsnag を統合して、Sidekiq のすべての例外をレスキューし、通知を送信する方法はありますか? 私はドキュメントでそれを見つけることができません。
def call(_worker, _msg, _queue)
Bugsnag.before_notify_callbacks << lambda do |notif|
notif.add_tab(
:gem_version,
metascrape: Metascrape::VERSION
)
end
yield
Rescue ActiveRecord::RecordNotFound => e Bugsnag.notify e ensure Bugsnag.before_notify_callbacks.clear end end