Spec-Zone.ru › Ruby on Rails 7.2

класс ActiveSupport::Notifications::Event

Родитель:
Объект

Атрибуты

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

Публичные методы класса

new(name, start, ending, transaction_id, payload) Показать исходный код
# 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

Публичные методы экземпляра

allocations() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 176
def allocations
  @allocation_count_finish - @allocation_count_start
end

Возвращает количество выделенных ресурсов между вызовом start! и вызовом finish!.

cpu_time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 163
def cpu_time
  @cpu_time_finish - @cpu_time_start
end

Возвращает время процессорного времени (в миллисекундах), прошедшее между вызовом start! и вызовом finish!.

duration() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 198
def duration
  @end - @time
end

Возвращает разницу в миллисекундах между началом и окончанием выполнения события.

ActiveSupport::Notifications.subscribe('wait') do |event|
  @event = event
end

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

@event.duration # => 1000.138
end() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 128
def end
  @end / 1000.0 if @end
end
finish!() Показать исходный код
# 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

Запись информации в момент завершения события

gc_time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 182
def gc_time
  (@gc_time_finish - @gc_time_start) / 1_000_000.0
end

Возвращает время, затраченное на сборку мусора (в миллисекундах) между вызовом start! и вызовом finish!

idle_time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 169
def idle_time
  diff = duration - cpu_time
  diff > 0.0 ? diff : 0.0
end

Возвращает время простоя (в миллисекундах), прошедшее между вызовом start! и вызовом finish!.

start!() Показать исходный код
# 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

Запись информации при старте события

time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 124
def time
  @time / 1000.0 if @time
end

© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API