Sha256: 8d67c5cc3ecf0b8694e3dbdfff6b2cb3c4a6bc1e721d1b302f5a6061d418dadb

Contents?: true

Size: 1.25 KB

Versions: 4

Compression:

Stored size: 1.25 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

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-8.13.1 lib/new_relic/agent/instrumentation/net_http.rb
newrelic_rpm-8.13.0 lib/new_relic/agent/instrumentation/net_http.rb
newrelic_rpm-8.12.0 lib/new_relic/agent/instrumentation/net_http.rb
newrelic_rpm-8.11.0 lib/new_relic/agent/instrumentation/net_http.rb