Sha256: 5ada8cf72b637aa745e38ba9f026b32cb939a6fe29a6db12639d1d825d8bec12

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

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

2 entries across 2 versions & 1 rubygems

Version Path
newrelic_rpm-8.10.1 lib/new_relic/agent/instrumentation/typhoeus.rb
newrelic_rpm-8.10.0 lib/new_relic/agent/instrumentation/typhoeus.rb