Module: ScoutApm::Instruments::ActiveRecordFinderMethodsInstruments

Defined in:
lib/scout_apm/instruments/active_record.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(instrumented_class) ⇒ Object



253
254
255
256
257
258
259
260
261
# File 'lib/scout_apm/instruments/active_record.rb', line 253

def self.included(instrumented_class)
  ScoutApm::Agent.instance.context.logger.info "Instrumenting ActiveRecord::FinderMethods - #{instrumented_class.inspect}"
  instrumented_class.class_eval do
    unless instrumented_class.method_defined?(:find_with_associations_without_scout_instruments)
      alias_method :find_with_associations_without_scout_instruments, :find_with_associations
      alias_method :find_with_associations, :find_with_associations_with_scout_instruments
    end
  end
end

Instance Method Details

#find_with_associations_with_scout_instruments(*args, &block) ⇒ Object



263
264
265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/scout_apm/instruments/active_record.rb', line 263

def find_with_associations_with_scout_instruments(*args, &block)
  req = ScoutApm::RequestManager.lookup
  layer = ScoutApm::Layer.new("ActiveRecord", Utils::ActiveRecordMetricName::DEFAULT_METRIC)
  layer.annotate_layer(:ignorable => true)
  layer.desc = SqlList.new
  req.start_layer(layer)
  req.ignore_children!
  begin
    find_with_associations_without_scout_instruments(*args, &block)
  ensure
    req.acknowledge_children!
    req.stop_layer
  end
end