Sha256: 3054d0c4c8d06b55f000d7f440e06099ef98447bf4d385a4271cb7ac796eed75

Contents?: true

Size: 940 Bytes

Versions: 4

Compression:

Stored size: 940 Bytes

Contents

DependencyDetection.defer do
  depends_on do
    defined?(ActiveMerchant)
  end
  
  executes do
    NewRelic::Agent.logger.debug 'Installing ActiveMerchant instrumentation'
  end
  
  executes do
    ActiveMerchant::Billing::Gateway.implementations.each do |gateway|
      gateway.class_eval do
        implemented_methods = public_instance_methods(false)
        gateway_name = self.name.split('::').last
        [:authorize, :purchase, :credit, :void, :capture, :recurring].each do |operation|
          if implemented_methods.include?(operation.to_s)
            add_method_tracer operation, "ActiveMerchant/gateway/#{gateway_name}/#{operation}", :scoped_metric_only => true
            add_method_tracer operation, "ActiveMerchant/gateway/#{gateway_name}", :push_scope => false
            add_method_tracer operation, "ActiveMerchant/operation/#{operation}", :push_scope => false
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-3.1.1 lib/new_relic/agent/instrumentation/active_merchant.rb
newrelic_rpm-3.1.1.beta3 lib/new_relic/agent/instrumentation/active_merchant.rb
newrelic_rpm-3.1.1.beta2 lib/new_relic/agent/instrumentation/active_merchant.rb
newrelic_rpm-3.1.1.beta1 lib/new_relic/agent/instrumentation/active_merchant.rb