Sha256: d6976bc5689b5af44d86c6f083d071b896a962e2ce270d72ca22db70ba900834

Contents?: true

Size: 977 Bytes

Versions: 3

Compression:

Stored size: 977 Bytes

Contents

DependencyDetection.defer do
  depends_on do
    defined?(ActiveMerchant) && defined?(ActiveMerchant::Billing)
  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

3 entries across 3 versions & 1 rubygems

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