Sha256: 7044e3a0d256ce5c123a781de801401a2e9fde57f26ba103aa83bafd105a105f

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true
require_relative 'instrumentation'

module NewRelic::Agent::Instrumentation
  module DelayedJob
    module Chain
      def self.instrument!
        Delayed::Worker.class_eval do
          include NewRelic::Agent::Instrumentation::DelayedJob

          def initialize_with_new_relic(*args)
            initialize_with_tracing { initialize_without_new_relic(*args) }
          end

          alias initialize_without_new_relic initialize
          alias initialize initialize_with_new_relic

          def install_newrelic_job_tracer
            Delayed::Job.class_eval do
              include NewRelic::Agent::Instrumentation::DelayedJobTracer

              alias_method :invoke_job_without_new_relic, :invoke_job

              def invoke_job(*args, &block)
                invoke_job_with_tracing { invoke_job_without_new_relic(*args, &block) }
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/instrumentation/delayed_job/chain.rb