Class: Sentry::Rails::ActiveJobExtensions::SentryReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/sentry/rails/active_job.rb

Constant Summary collapse

OP_NAME =
"queue.active_job"
SPAN_ORIGIN =
"auto.queue.active_job"

Class Method Summary collapse

Class Method Details

.finish_sentry_transaction(transaction, status) ⇒ Object



62
63
64
65
66
67
# File 'lib/sentry/rails/active_job.rb', line 62

def finish_sentry_transaction(transaction, status)
  return unless transaction

  transaction.set_http_status(status)
  transaction.finish
end

.record(job, &block) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/sentry/rails/active_job.rb', line 25

def record(job, &block)
  Sentry.with_scope do |scope|
    begin
      scope.set_transaction_name(job.class.name, source: :task)
      transaction =
        if job.is_a?(::Sentry::SendEventJob)
          nil
        else
          Sentry.start_transaction(
            name: scope.transaction_name,
            source: scope.transaction_source,
            op: OP_NAME,
            origin: SPAN_ORIGIN
          )
        end

      scope.set_span(transaction) if transaction

      yield.tap do
        finish_sentry_transaction(transaction, 200)
      end
    rescue Exception => e # rubocop:disable Lint/RescueException
      finish_sentry_transaction(transaction, 500)

      Sentry::Rails.capture_exception(
        e,
        extra: sentry_context(job),
        tags: {
          job_id: job.job_id,
          provider_job_id: job.provider_job_id
        }
      )
      raise
    end
  end
end

.sentry_context(job) ⇒ Object



69
70
71
72
73
74
75
76
77
78
# File 'lib/sentry/rails/active_job.rb', line 69

def sentry_context(job)
  {
    active_job: job.class.name,
    arguments: sentry_serialize_arguments(job.arguments),
    scheduled_at: job.scheduled_at,
    job_id: job.job_id,
    provider_job_id: job.provider_job_id,
    locale: job.locale
  }
end

.sentry_serialize_arguments(argument) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
# File 'lib/sentry/rails/active_job.rb', line 80

def sentry_serialize_arguments(argument)
  case argument
  when Hash
    argument.transform_values { |v| sentry_serialize_arguments(v) }
  when Array, Enumerable
    argument.map { |v| sentry_serialize_arguments(v) }
  when ->(v) { v.respond_to?(:to_global_id) }
    argument.to_global_id.to_s rescue argument
  else
    argument
  end
end