Class: Vmstat::Task
- Inherits:
-
Struct
- Object
- Struct
- Vmstat::Task
- Defined in:
- lib/vmstat/task.rb
Overview
Per task performance metrics snapshot.
Instance Attribute Summary collapse
-
#resident_size ⇒ Fixnum
The number of resident pages for the task.
-
#system_time_ms ⇒ Fixnum
The total system run time for terminated threads within the task.
-
#user_time_ms ⇒ Fixnum
The total user run time for terminated threads within the task.
-
#virtual_size ⇒ Fixnum
The number of virtual pages for the task.
Instance Attribute Details
#resident_size ⇒ Fixnum
The number of resident pages for the task
11 12 13 |
# File 'lib/vmstat/task.rb', line 11 def resident_size @resident_size end |
#system_time_ms ⇒ Fixnum
The total system run time for terminated threads within the task.
11 12 13 |
# File 'lib/vmstat/task.rb', line 11 def system_time_ms @system_time_ms end |
#user_time_ms ⇒ Fixnum
The total user run time for terminated threads within the task.
11 12 13 |
# File 'lib/vmstat/task.rb', line 11 def user_time_ms @user_time_ms end |
#virtual_size ⇒ Fixnum
The number of virtual pages for the task.
11 12 13 |
# File 'lib/vmstat/task.rb', line 11 def virtual_size @virtual_size end |