Sha256: 608a293a2cfda22b7f2bf6886e1ad10d3ebdb9978b254454604053e763468025

Contents?: true

Size: 1.63 KB

Versions: 7

Compression:

Stored size: 1.63 KB

Contents

# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
# frozen_string_literal: true

require 'new_relic/agent/instrumentation/action_controller_subscriber'
require 'new_relic/agent/instrumentation/action_controller_other_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
    !NewRelic::Agent.config[:disable_action_controller] &&
      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$/)

    subs = %w[exist_fragment?
      expire_fragment
      halted_callback
      read_fragment
      redirect_to
      send_data
      send_file
      send_stream
      write_fragment
      unpermitted_parameters].map { |s| Regexp.escape(s) }

    # have to double escape period because its going from string -> regex
    NewRelic::Agent::Instrumentation::ActionControllerOtherSubscriber \
      .subscribe(Regexp.new("^(?:#{subs.join('|')})\\.action_controller$"))
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
newrelic_rpm-9.17.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.16.1 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.16.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.15.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.14.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.13.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
newrelic_rpm-9.12.0 lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb