Sha256: b025bd8737fec05cba154f67c6ad5eb44915a62b591bc760d4a605429f6d1c76

Contents?: true

Size: 1.3 KB

Versions: 26

Compression:

Stored size: 1.3 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 'typhoeus/instrumentation'
require_relative 'typhoeus/chain'
require_relative 'typhoeus/prepend'

DependencyDetection.defer do
  named :typhoeus

  depends_on do
    defined?(Typhoeus) && defined?(Typhoeus::VERSION)
  end

  depends_on do
    NewRelic::Agent::Instrumentation::Typhoeus.is_supported_version?
  end

  executes do
    NewRelic::Agent.logger.info('Installing Typhoeus instrumentation')
    require 'new_relic/agent/distributed_tracing/cross_app_tracing'
    require 'new_relic/agent/http_clients/typhoeus_wrappers'
  end

  # Basic request tracing
  executes do
    Typhoeus.before do |request|
      NewRelic::Agent::Instrumentation::Typhoeus.trace(request)

      # Ensure that we always return a truthy value from the before block,
      # otherwise Typhoeus will bail out of the instrumentation.
      true
    end
  end

  # Apply single TT node for Hydra requests until async support
  executes do
    if use_prepend?
      prepend_instrument Typhoeus::Hydra, NewRelic::Agent::Instrumentation::Typhoeus::Prepend
    else
      chain_instrument NewRelic::Agent::Instrumentation::Typhoeus::Chain
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
newrelic_rpm-9.14.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.13.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.12.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.11.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.10.2 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.10.1 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.10.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.9.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.8.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.7.1 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.7.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.6.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.5.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.4.2 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.4.1 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.4.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.3.1 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.3.0 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.2.2 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-9.2.1 lib/new_relic/agent/instrumentation/typhoeus.rb