Skip to Content Skip to Search

class ActiveSupport::Notifications::Event

Attributes

[R] name
[RW] payload
[R] transaction_id

Public class methods

Source code GitHub
# 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
end

Public instance methods

Returns the number of allocations made between the call to start! and the call to finish!.

Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 172
def allocations
  @allocation_count_finish - @allocation_count_start
end

Returns the CPU time (in milliseconds) passed between the call to start! and the call to finish!.

Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 159
def cpu_time
  @cpu_time_finish - @cpu_time_start
end

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
Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 205
def duration
  @end - @time
end
Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 126
def end
  @end / 1000.0 if @end
end

Record information at the time this event finishes

Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 151
def finish!
  @cpu_time_finish = now_cpu
  @end = now
  @allocation_count_finish = now_allocations
end

Returns the idle time time (in milliseconds) passed between the call to start! and the call to finish!.

Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 165
def idle_time
  diff = duration - cpu_time
  diff > 0.0 ? diff : 0.0
end

Record information at the time this event starts

Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 144
def start!
  @time = now
  @cpu_time_start = now_cpu
  @allocation_count_start = now_allocations
end
Source code GitHub
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 122
def time
  @time / 1000.0 if @time
end

Definition files