summaryrefslogtreecommitdiff
path: root/lib/gitlab/sidekiq_logging/exception_handler.rb
blob: a6d6819bf8eebef974333401f255dd68057170f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module Gitlab
  module SidekiqLogging
    class ExceptionHandler
      def call(job_exception, context)
        data = {
          error_class: job_exception.class.name,
          error_message: job_exception.message
        }

        if context.is_a?(Hash)
          data.merge!(context)
          # correlation_id, jid, and class are available inside the job
          # Hash, so promote these arguments to the root tree so that
          # can be searched alongside other Sidekiq log messages.
          job_data = data.delete(:job)
          data.merge!(job_data) if job_data.present?
        end

        data[:error_backtrace] = Gitlab::BacktraceCleaner.clean_backtrace(job_exception.backtrace) if job_exception.backtrace.present?

        Sidekiq.logger.warn(data)
      end
    end
  end
end