Sha256: d87395dbb0dbd995fe9715a0fcf680b56b4225f49e348d1e870392f542f75ca4

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

# 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 'net_http/chain'
require_relative 'net_http/prepend'

DependencyDetection.defer do
  named :net_http

  depends_on do
    defined?(Net) && defined?(Net::HTTP)
  end

  executes do
    NewRelic::Agent.logger.info('Installing Net:HTTP Wrappers')
    require 'new_relic/agent/http_clients/net_http_wrappers'
  end

  # Airbrake uses method chaining on Net::HTTP in versions < 10.0.2 (10.0.2 updated to prepend for Net:HTTP)
  conflicts_with_prepend do
    defined?(Airbrake) && defined?(Airbrake::AIRBRAKE_VERSION) && Gem::Version.create(Airbrake::AIRBRAKE_VERSION) < Gem::Version.create('10.0.2')
  end

  conflicts_with_prepend do
    defined?(ScoutApm)
  end

  conflicts_with_prepend do
    defined?(Rack::MiniProfiler)
  end

  conflicts_with_prepend do
    source_location_for(Net::HTTP, "request") =~ /airbrake|profiler/i
  end

  executes do
    if use_prepend?
      prepend_instrument Net::HTTP, NewRelic::Agent::Instrumentation::NetHTTP::Prepend
    else
      chain_instrument NewRelic::Agent::Instrumentation::NetHTTP::Chain
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-8.16.0 lib/new_relic/agent/instrumentation/net_http.rb
newrelic_rpm-8.15.0 lib/new_relic/agent/instrumentation/net_http.rb
newrelic_rpm-8.14.0 lib/new_relic/agent/instrumentation/net_http.rb