Sha256: 5ed1f2c1a84bda9d17837f3fee4ee2ca62d849723fd28c17e5c2a35a49a6c9da

Contents?: true

Size: 1 KB

Versions: 8

Compression:

Stored size: 1 KB

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)

    ActiveSupport.on_load(:active_record) do
      ::NewRelic::Agent::Instrumentation::ActiveRecordHelper.instrument_additional_methods
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
newrelic_rpm-4.4.0.336 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-4.3.0.335 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-4.2.0.334 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-4.1.0.333 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-4.0.0.332 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-3.18.1.330 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-3.18.0.329 lib/new_relic/agent/instrumentation/active_record_4.rb
newrelic_rpm-3.17.2.327 lib/new_relic/agent/instrumentation/active_record_4.rb