Sha256: 7fe99662e127e50aff5ef0e54da7d280fa034ef6a5e41f75242d06625419b88c

Contents?: true

Size: 1.02 KB

Versions: 9

Compression:

Stored size: 1.02 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
require 'new_relic/agent/instrumentation/action_controller_subscriber'
require 'new_relic/agent/prepend_supportability'


DependencyDetection.defer do
  @name = :action_controller_notifications

  depends_on do
    defined?(::Rails::VERSION::MAJOR) && ::Rails::VERSION::MAJOR.to_i >= 4
  end

  depends_on do
    defined?(ActionController) && (defined?(ActionController::Base) || defined?(ActionController::API))
  end

  executes do
    ::NewRelic::Agent.logger.info 'Installing notifications based Action Controller instrumentation'
  end

  executes do
    ActiveSupport.on_load(:action_controller) do
      include NewRelic::Agent::Instrumentation::ControllerInstrumentation

      NewRelic::Agent::PrependSupportability.record_metrics_for(self)
    end

    NewRelic::Agent::Instrumentation::ActionControllerSubscriber \
      .subscribe(/^process_action.action_controller$/)
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
newrelic_rpm-6.11.0.365 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.10.0.364 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.9.0.363 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.8.0.360 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.7.0.359 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.6.0.358 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.5.0.357 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.4.0.356 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.3.0.355 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb