Sha256: ef0c5dc0c2137113cb828bfa7c5d3355240864e6d05e751931d1381e8a4704e4

Contents?: true

Size: 1.42 KB

Versions: 9

Compression:

Stored size: 1.42 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

DependencyDetection.defer do
  named :net_http

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

  executes do
    ::NewRelic::Agent.logger.info 'Installing Net instrumentation'
    require 'new_relic/agent/cross_app_tracing'
    require 'new_relic/agent/http_clients/net_http_wrappers'
  end

  executes do
    class Net::HTTP
      def request_with_newrelic_trace(request, *args, &block)
        wrapped_request = NewRelic::Agent::HTTPClients::NetHTTPRequest.new(self, request)

        segment = NewRelic::Agent::Transaction.start_external_request_segment(
          wrapped_request.type, wrapped_request.uri, wrapped_request.method)

        begin
          response = nil
          segment.add_request_headers wrapped_request

          # RUBY-1244 Disable further tracing in request to avoid double
          # counting if connection wasn't started (which calls request again).
          NewRelic::Agent.disable_all_tracing do
            response = request_without_newrelic_trace( request, *args, &block )
          end

          segment.read_response_headers response
          response
        ensure
          segment.finish
        end
      end

      alias request_without_newrelic_trace request
      alias request request_with_newrelic_trace
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
newrelic_rpm-4.6.0.338 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.5.0.337 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.4.0.336 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.3.0.335 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.2.0.334 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.1.0.333 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-4.0.0.332 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-3.18.1.330 lib/new_relic/agent/instrumentation/net.rb
newrelic_rpm-3.18.0.329 lib/new_relic/agent/instrumentation/net.rb