module ElasticAPM::ChildDurations::Methods

@api private

Public Instance Methods

child_durations() click to toggle source
# File lib/elastic_apm/child_durations.rb, line 25
def child_durations
  @child_durations ||= Durations.new
end
child_started() click to toggle source
# File lib/elastic_apm/child_durations.rb, line 29
def child_started
  child_durations.start
end
child_stopped() click to toggle source
# File lib/elastic_apm/child_durations.rb, line 33
def child_stopped
  child_durations.stop
end