Sha256: ff92c354df38fa90cb24e662f633e143019c6ce95d097a20181b430c68c01926

Contents?: true

Size: 612 Bytes

Versions: 6

Compression:

Stored size: 612 Bytes

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.

module NewRelic::Agent::Instrumentation
  module Typhoeus
    module Chain 
      def self.instrument!
        ::Typhoeus::Hydra.class_eval do 
          include NewRelic::Agent::Instrumentation::Typhoeus

          def run_with_newrelic(*args)
            with_tracing { run_without_newrelic(*args) }
          end
    
          alias run_without_newrelic run
          alias run run_with_newrelic
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/instrumentation/typhoeus/chain.rb