Sha256: a5f6c32309ba12ab1c03d079da33826a88b989b8b08fc69aa3e222a44001ca0e

Contents?: true

Size: 1.4 KB

Versions: 13

Compression:

Stored size: 1.4 KB

Contents

DependencyDetection.defer do
  depends_on do
    defined?(ActionWebService)
  end

  executes do
    # NewRelic Agent instrumentation for WebServices

    # Note Action Web Service is removed from default package in rails
    # 2.0, this is purely here as a service to our legacy customers.

    # instrumentation for Web Service martialing - XML RPC
    ActionWebService::Protocol::XmlRpc::XmlRpcProtocol.class_eval do
      add_method_tracer :decode_request, "WebService/Xml Rpc/XML Decode"
      add_method_tracer :encode_request, "WebService/Xml Rpc/XML Encode"
      add_method_tracer :decode_response, "WebService/Xml Rpc/XML Decode"
      add_method_tracer :encode_response, "WebService/Xml Rpc/XML Encode"
    end

    # instrumentation for Web Service martialing - Soap
    ActionWebService::Protocol::Soap::SoapProtocol.class_eval do
      add_method_tracer :decode_request, "WebService/Soap/XML Decode"
      add_method_tracer :encode_request, "WebService/Soap/XML Encode"
      add_method_tracer :decode_response, "WebService/Soap/XML Decode"
      add_method_tracer :encode_response, "WebService/Soap/XML Encode"
    end

    if defined?(ActionController) && defined?(ActionController::Base)
      ActionController::Base.class_eval do
        if method_defined? :perform_invocation
          add_method_tracer :perform_invocation, 'WebService/#{controller_name}/#{args.first}'
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
ghazel-newrelic_rpm-3.1.0.1 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.beta5 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.beta4 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.djlogging2 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.djlogging lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.beta3 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.beta2 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.0.1 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.1.0.beta1 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.0.0 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.0.0.beta2 lib/new_relic/agent/instrumentation/rails/action_web_service.rb
newrelic_rpm-3.0.0.beta1 lib/new_relic/agent/instrumentation/rails/action_web_service.rb