class ActiveSupport::Notifications::Event

def self.clock_gettime_supported? # :nodoc:

:nodoc:
def self.clock_gettime_supported? # :nodoc:
  defined?(Process::CLOCK_THREAD_CPUTIME_ID) &&
    !Gem.win_platform? &&
    !RUBY_PLATFORM.match?(/solaris/i)
end

def <<(event)

def <<(event)
  @children << event
end

def allocations

the call to +finish!+
Returns the number of allocations made since the call to +start!+ and
def allocations
  @allocation_count_finish - @allocation_count_start
end

def cpu_time

+start!+ and the call to +finish!+
Returns the CPU time (in milliseconds) passed since the call to
def cpu_time
  (@cpu_time_finish - @cpu_time_start) * 1000
end

def duration

@event.duration # => 1000.138

end
sleep 1
ActiveSupport::Notifications.instrument('wait') do

end
@event = ActiveSupport::Notifications::Event.new(*args)
ActiveSupport::Notifications.subscribe('wait') do |*args|

event started and when it ended.
Returns the difference in milliseconds between when the execution of the
def duration
  1000.0 * (self.end - time)
end

def end=(ending)

def end=(ending)
  ActiveSupport::Deprecation.deprecation_warning(:end=, :finish!)
  @end = ending
end

def finish!

Record information at the time this event finishes
def finish!
  @cpu_time_finish = now_cpu
  @end = now
  @allocation_count_finish = now_allocations
end

def idle_time

+start!+ and the call to +finish!+
Returns the idle time time (in milliseconds) passed since the call to
def idle_time
  duration - cpu_time
end

def initialize(name, start, ending, transaction_id, payload)

def initialize(name, start, ending, transaction_id, payload)
  @name           = name
  @payload        = payload.dup
  @time           = start
  @transaction_id = transaction_id
  @end            = ending
  @children       = []
  @cpu_time_start = 0
  @cpu_time_finish = 0
  @allocation_count_start = 0
  @allocation_count_finish = 0
end

def now

def now
  Concurrent.monotonic_time
end

def now_allocations

def now_allocations
  0
end

def now_allocations

def now_allocations
  GC.stat :total_allocated_objects
end

def now_cpu

def now_cpu
  Process.clock_gettime(Process::CLOCK_THREAD_CPUTIME_ID)
end

def now_cpu

def now_cpu
  0
end

def parent_of?(event)

def parent_of?(event)
  @children.include? event
end

def start!

Record information at the time this event starts
def start!
  @time = now
  @cpu_time_start = now_cpu
  @allocation_count_start = now_allocations
end