Sha256: a72cf9c201a6d153e65c1728f6788759150d2a26910515797b79c10bb105951f

Contents?: true

Size: 1.29 KB

Versions: 7

Compression:

Stored size: 1.29 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.

module NewRelic
  module Agent
    module Instrumentation
      module NetHTTP
        def request_with_tracing(request)
          wrapped_request = NewRelic::Agent::HTTPClients::NetHTTPRequest.new(self, request)

          segment = NewRelic::Agent::Tracer.start_external_request_segment(
            library: wrapped_request.type,
            uri: wrapped_request.uri,
            procedure: 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 = NewRelic::Agent::Tracer.capture_segment_error segment do
                yield
              end
            end

            wrapped_response = NewRelic::Agent::HTTPClients::NetHTTPResponse.new response
            segment.process_response_headers wrapped_response
            response
          ensure
            segment.finish
          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/net_http/instrumentation.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/instrumentation/net_http/instrumentation.rb