class ActiveSupport::Notifications::Event
Attributes
Public Class Methods
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 110 def initialize(name, start, ending, transaction_id, payload) @name = name @payload = payload.dup @time = start ? start.to_f * 1_000.0 : start @transaction_id = transaction_id @end = ending ? ending.to_f * 1_000.0 : ending @cpu_time_start = 0.0 @cpu_time_finish = 0.0 @allocation_count_start = 0 @allocation_count_finish = 0 @gc_time_start = 0 @gc_time_finish = 0 end
Public Instance Methods
Returns the difference in milliseconds between when the execution of the event started and when it ended.
ActiveSupport::Notifications.subscribe('wait') do |event| @event = event end ActiveSupport::Notifications.instrument('wait') do sleep 1 end @event.duration # => 1000.138
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 198 def duration @end - @time end
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 128 def end @end / 1000.0 if @end end
Record information at the time this event finishes
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 154 def finish! @cpu_time_finish = now_cpu @gc_time_finish = now_gc @end = now @allocation_count_finish = now_allocations end
Record information at the time this event starts
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 146 def start! @time = now @cpu_time_start = now_cpu @gc_time_start = now_gc @allocation_count_start = now_allocations end
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 124 def time @time / 1000.0 if @time end