What does the Load Average in the CPU plugin mean? The Load Average figures on UNIX-like systems are indicative of the CPU load over the last 1, 5 and 15 minutes. They are based on figures calculated by the operating systems and are reported by the plugin without further change. |
Additional Information On Linux these values are read from the /proc/loadavg pseudo-file. As an example: [root@localhost ~]# cat /proc/loadavg The first three values (i.e., 0.07, 0.07 and 0.01 in the example above) correspond to "loadAverage1Min", "loadAverage5Min" and "loadAverage15Min", respectively. "The first three fields in this file are load average figures giving the number of jobs in the run queue (state R) or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes. They are the same as the load average numbers given by uptime(1) and other programs. The fourth field consists of two numbers separated by a slash (/). The first of these is the number of currently runnable kernel scheduling entities (processes, threads). The value after the slash is the number of kernel scheduling entities that currently exist on the system. The fifth field is the PID of the process that was most recently created on the system." |
Comments
0 comments
Please sign in to leave a comment.