Sha256: 5c1ce5fbe95b93d81f7a61dad2310972af33545fcafe78140e9be7d0073f1ab7

Contents?: true

Size: 826 Bytes

Versions: 10

Compression:

Stored size: 826 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'


DependencyDetection.defer do
  @name = :rails5_controller

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

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

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

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

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
newrelic_rpm-3.17.1.326 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.17.0.325 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.16.3.323 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.16.2.321 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.16.1.320 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.16.0.318 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/newrelic_rpm-3.15.2.317/lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.15.2.317 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.15.1.316 lib/new_relic/agent/instrumentation/rails5/action_controller.rb
newrelic_rpm-3.15.0.314 lib/new_relic/agent/instrumentation/rails5/action_controller.rb