Sha256: 3c2b434dc3d3e5e2c52014540a0301f2a84a2bd0f668a40af09a7eda1555997b

Contents?: true

Size: 1.04 KB

Versions: 11

Compression:

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

11 entries across 11 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb