Sha256: 13f6d9a16d700ffeb18d5053945f3b43f5e0c5f3a31bf9789f7f8a659c3e2c58

Contents?: true

Size: 982 Bytes

Versions: 14

Compression:

Stored size: 982 Bytes

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 = :rails4_controller

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

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

  executes do
    ::NewRelic::Agent.logger.info 'Installing Rails 4 Controller instrumentation'
  end

  executes do
    class ActionController::Base
      include NewRelic::Agent::Instrumentation::ControllerInstrumentation
    end
    NewRelic::Agent::Instrumentation::ActionControllerSubscriber \
      .subscribe(/^process_action.action_controller$/)

    ::NewRelic::Agent::PrependSupportability.record_metrics_for(::ActionController::Base)
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
newrelic_rpm-6.2.0.354 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-6.1.0.352 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-6.0.0.351 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.7.0.350 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.6.0.349 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.5.0.348 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.4.0.347 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.3.0.346 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.2.0.345 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.1.0.344 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-5.0.0.342 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-4.8.0.341 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-4.7.1.340 lib/new_relic/agent/instrumentation/rails4/action_controller.rb
newrelic_rpm-4.7.0.339 lib/new_relic/agent/instrumentation/rails4/action_controller.rb