Sha256: 1be4219e322a988b824997696c1bceacddf6899fc1c19ef89616b9876967ca01

Contents?: true

Size: 1.01 KB

Versions: 30

Compression:

Stored size: 1.01 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_view_subscriber'
require 'new_relic/agent/prepend_supportability'

DependencyDetection.defer do
  @name = :action_view_notifications

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

  depends_on do
    !NewRelic::Agent.config[:disable_view_instrumentation] &&
      !NewRelic::Agent::Instrumentation::ActionViewSubscriber.subscribed?
  end

  executes do
    NewRelic::Agent.logger.info('Installing notification based Action View instrumentation')
  end

  executes do
    ActiveSupport.on_load(:action_view) do
      NewRelic::Agent::Instrumentation::ActionViewSubscriber.subscribe(/render_.+\.action_view$/)
      NewRelic::Agent::PrependSupportability.record_metrics_for(ActionView::Base, ActionView::Template, ActionView::Renderer)
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
newrelic_rpm-9.17.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.16.1 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.16.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.15.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.14.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.13.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.12.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.11.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.10.2 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.10.1 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.10.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.9.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.8.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.7.1 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.7.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.6.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.5.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.4.2 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.4.1 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
newrelic_rpm-9.4.0 lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb