Class: ActiveSupport::Notifications::Event
- Defined in:
- lib/active_support/notifications/instrumenter.rb
Instance Attribute Summary collapse
-
#children ⇒ Object
readonly
Returns the value of attribute children.
-
#end ⇒ Object
Returns the value of attribute end.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#payload ⇒ Object
readonly
Returns the value of attribute payload.
-
#time ⇒ Object
readonly
Returns the value of attribute time.
-
#transaction_id ⇒ Object
readonly
Returns the value of attribute transaction_id.
Instance Method Summary collapse
- #<<(event) ⇒ Object
-
#allocations ⇒ Object
Returns the number of allocations made since the call to
start!
and the call tofinish!
. -
#cpu_time ⇒ Object
Returns the CPU time (in milliseconds) passed since the call to
start!
and the call tofinish!
. -
#duration ⇒ Object
Returns the difference in milliseconds between when the execution of the event started and when it ended.
-
#finish! ⇒ Object
Record information at the time this event finishes.
-
#idle_time ⇒ Object
Returns the idle time time (in milliseconds) passed since the call to
start!
and the call tofinish!
. -
#initialize(name, start, ending, transaction_id, payload) ⇒ Event
constructor
A new instance of Event.
- #parent_of?(event) ⇒ Boolean
-
#start! ⇒ Object
Record information at the time this event starts.
Constructor Details
#initialize(name, start, ending, transaction_id, payload) ⇒ Event
Returns a new instance of Event.
64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/active_support/notifications/instrumenter.rb', line 64 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 |
Instance Attribute Details
#children ⇒ Object (readonly)
Returns the value of attribute children.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def children @children end |
#end ⇒ Object
Returns the value of attribute end.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def end @end end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def name @name end |
#payload ⇒ Object (readonly)
Returns the value of attribute payload.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def payload @payload end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def time @time end |
#transaction_id ⇒ Object (readonly)
Returns the value of attribute transaction_id.
55 56 57 |
# File 'lib/active_support/notifications/instrumenter.rb', line 55 def transaction_id @transaction_id end |
Instance Method Details
#<<(event) ⇒ Object
130 131 132 |
# File 'lib/active_support/notifications/instrumenter.rb', line 130 def <<(event) @children << event end |
#allocations ⇒ Object
Returns the number of allocations made since the call to start!
and the call to finish!
110 111 112 |
# File 'lib/active_support/notifications/instrumenter.rb', line 110 def allocations @allocation_count_finish - @allocation_count_start end |
#cpu_time ⇒ Object
Returns the CPU time (in milliseconds) passed since the call to start!
and the call to finish!
98 99 100 |
# File 'lib/active_support/notifications/instrumenter.rb', line 98 def cpu_time (@cpu_time_finish - @cpu_time_start) * 1000 end |
#duration ⇒ Object
Returns the difference in milliseconds between when the execution of the event started and when it ended.
ActiveSupport::Notifications.subscribe('wait') do |*args|
@event = ActiveSupport::Notifications::Event.new(*args)
end
ActiveSupport::Notifications.instrument('wait') do
sleep 1
end
@event.duration # => 1000.138
126 127 128 |
# File 'lib/active_support/notifications/instrumenter.rb', line 126 def duration 1000.0 * (self.end - time) end |
#finish! ⇒ Object
Record information at the time this event finishes
85 86 87 88 89 |
# File 'lib/active_support/notifications/instrumenter.rb', line 85 def finish! @cpu_time_finish = now_cpu @end = now @allocation_count_finish = now_allocations end |
#idle_time ⇒ Object
Returns the idle time time (in milliseconds) passed since the call to start!
and the call to finish!
104 105 106 |
# File 'lib/active_support/notifications/instrumenter.rb', line 104 def idle_time duration - cpu_time end |
#parent_of?(event) ⇒ Boolean
134 135 136 |
# File 'lib/active_support/notifications/instrumenter.rb', line 134 def parent_of?(event) @children.include? event end |
#start! ⇒ Object
Record information at the time this event starts
78 79 80 81 82 |
# File 'lib/active_support/notifications/instrumenter.rb', line 78 def start! @time = now @cpu_time_start = now_cpu @allocation_count_start = now_allocations end |