Sha256: f5baef26ec75b90cbad140cd646dbf0017cd9191793b95106d93aacef7968ff2
Contents?: true
Size: 973 Bytes
Versions: 6
Compression:
Stored size: 973 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/active_record_subscriber' DependencyDetection.defer do named :active_record_4 depends_on do defined?(::ActiveRecord) && defined?(::ActiveRecord::Base) && defined?(::ActiveRecord::VERSION) && ::ActiveRecord::VERSION::MAJOR.to_i >= 4 end depends_on do !NewRelic::Agent.config[:disable_activerecord_instrumentation] && !NewRelic::Agent::Instrumentation::ActiveRecordSubscriber.subscribed? end executes do ::NewRelic::Agent.logger.info 'Installing ActiveRecord 4 instrumentation' end executes do ActiveSupport::Notifications.subscribe('sql.active_record', NewRelic::Agent::Instrumentation::ActiveRecordSubscriber.new) ::NewRelic::Agent::Instrumentation::ActiveRecordHelper.instrument_additional_methods end end
Version data entries
6 entries across 6 versions & 1 rubygems