Difference between revisions of "System load"
Jump to navigation
Jump to search
(Created page with "``` 0.5 means the minimum waiting time at the counter. Between 0.00 and 1.0, there is no need to worry. Your servers are safe! 1.5 means the queue is filling up. If the averag...") |
|||
Line 1: | Line 1: | ||
+ | # System load | ||
+ | |||
+ | What is a load average? | ||
+ | |||
+ | ``` | ||
+ | uptime | ||
+ | ``` | ||
+ | |||
+ | The load average is the average system load on a Linux server for a defined period of time. In other words, it is the CPU demand of a server that includes sum of the running and the waiting threads. | ||
+ | |||
+ | Typically, the top or the uptime command will provide the load average of your server with output that looks like: | ||
+ | |||
+ | |||
``` | ``` | ||
0.5 means the minimum waiting time at the counter. Between 0.00 and 1.0, there is no need to worry. Your servers are safe! | 0.5 means the minimum waiting time at the counter. Between 0.00 and 1.0, there is no need to worry. Your servers are safe! |
Latest revision as of 16:41, 4 May 2022
System load
What is a load average?
uptime
The load average is the average system load on a Linux server for a defined period of time. In other words, it is the CPU demand of a server that includes sum of the running and the waiting threads.
Typically, the top or the uptime command will provide the load average of your server with output that looks like:
0.5 means the minimum waiting time at the counter. Between 0.00 and 1.0, there is no need to worry. Your servers are safe! 1.5 means the queue is filling up. If the average gets any higher, things are going to start slowing down. 3.00 means there's a considerably long queue waiting, and an extra resource/counter is required to clear up the queue faster.