Linux Load Average: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Linux =Overview= =<tt>/proc/loadavg</tt>= <pre> cat /proc/loadavg </pre>") |
|||
Line 10: | Line 10: | ||
cat /proc/loadavg | cat /proc/loadavg | ||
</pre> | </pre> | ||
This file provides a snapshot of the load average in regard to both the CPU and IO over time, as well as additional data used by uptime and other commands: | |||
<pre> | |||
0.00 0.01 0.02 2/137 2042 | |||
</pre> | |||
The first three columns measure CPU and IO utilization of the last one, five, and 10 minute periods. | |||
The fourth column shows the number of currently running processes and the total number of processes. | |||
The last column displays the last process ID used. |
Revision as of 02:48, 4 August 2016
Internal
Overview
/proc/loadavg
cat /proc/loadavg
This file provides a snapshot of the load average in regard to both the CPU and IO over time, as well as additional data used by uptime and other commands:
0.00 0.01 0.02 2/137 2042
The first three columns measure CPU and IO utilization of the last one, five, and 10 minute periods.
The fourth column shows the number of currently running processes and the total number of processes.
The last column displays the last process ID used.