class Airbrake::Sidekiq::ErrorHandler

def notify_airbrake(exception, context)

def notify_airbrake(exception, context)
  Airbrake.notify(exception, job: context) do |notice|
    notice[:context][:component] = 'sidekiq'
    notice[:context][:action] = action(context)
  end
end