Class: Vmstat::LoadAverage
- Inherits:
-
Struct
- Object
- Struct
- Vmstat::LoadAverage
- Defined in:
- lib/vmstat/load_average.rb
Overview
In UNIX computing, the system load is a measure of the amount of computational work that a computer system performs. The load average represents the average system load over a period of time. Source: wikipedia(en).
Instance Attribute Summary collapse
-
#fifteen_minutes ⇒ Float
The load for the last fifteen minutes.
-
#five_minutes ⇒ Float
The load for the last five minutes.
-
#one_minute ⇒ Float
The load for the last minute.
Instance Attribute Details
#fifteen_minutes ⇒ Float
The load for the last fifteen minutes.
9 10 11 |
# File 'lib/vmstat/load_average.rb', line 9 def fifteen_minutes @fifteen_minutes end |
#five_minutes ⇒ Float
The load for the last five minutes.
9 10 11 |
# File 'lib/vmstat/load_average.rb', line 9 def five_minutes @five_minutes end |
#one_minute ⇒ Float
The load for the last minute.
9 10 11 |
# File 'lib/vmstat/load_average.rb', line 9 def one_minute @one_minute end |