0

Possible Duplicate:
What's the difference between load average and CPU load?

enter image description hereLook at the image for what i am tying to ask . whats parameters of load averages and how we have to understand them ?

Raja G
  • 102,391
  • 106
  • 255
  • 328

2 Answers2

3

The load average represents the number of processes waiting for their turn to use the CPU(s), in the last 1, 5 and 15 minutes.

In your case, assuming you have a single CPU (single core) system:

  • In the last minute, you had 0.54 processes waiting to use the CPU on average.
  • In the last five minutes, you had 0.49 processes waiting to use the CPU on average.
  • In the last fifteen minutes, on average, you could have had 0.02 more processes using the CPU before attaining the maximum capacity of the CPU.

So, in practice, a load equal to or greater than 1 on a single CPU system means that the CPU is at maximum capacity and that processes have to wait to use it. A load less than 1 means that the CPU could process extra tasks without having to queue processes.

If you have two CPUs (e.g.: dual core CPU), you could reach a load of 2 before the CPU is at its max; 4 on a quad CPU system, and so on.

netcoder
  • 746
  • 4
  • 12
0

Load averages are the average of the %ge load of the cpu for the past 'x' minutes where s is 1,5,15.In your screenshot, it tells us that the avg load on your cpu is decreasing and the maximum is 1.54 %