Sha256: 182e11d505f08402756c9ba2a740078b25a22d80272be57a91006eb1285e9232
Contents?: true
Size: 988 Bytes
Versions: 4
Compression:
Stored size: 988 Bytes
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 NewRelic::Agent::Instrumentation::ActionViewSubscriber.subscribe(/render_.+\.action_view$/) NewRelic::Agent::PrependSupportability.record_metrics_for(::ActionView::Base, ::ActionView::Template, ::ActionView::Renderer) end end
Version data entries
4 entries across 4 versions & 1 rubygems