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
333 334 335 336 337 338 339 340 341 |
# File 'lib/scout_apm/instruments/active_record.rb', line 333 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
343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
# File 'lib/scout_apm/instruments/active_record.rb', line 343 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 |