rails-engine/exception-track

View on GitHub
lib/exception_notification/resque.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require "resque/failure/base"

module ExceptionNotification
  class Resque < Resque::Failure::Base
    def self.count
      ::Resque::Stat[:failed]
    end

    def save
      data = {
        error_class: exception.class.name,
        error_message: exception.message,
        failed_at: Time.now.to_s,
        payload: payload,
        queue: queue,
        worker: worker.to_s
      }

      ExceptionNotifier.notify_exception(exception, data: {resque: data})
    end
  end
end