Archived

This forum has been archived. Please start a new discussion on GitHub.

what is the meaning of node load's returns?

the administrator util has a command: node load NAME, whitch prints the load of the node name.

for example , it returns the following:

load average (1/5/15): 0.0241667 / 0.05 / 0.0457778


What is the meaning of every part: (1/5/15): 0.0241667 / 0.05 / 0.0457778

thanks!

Comments

  • benoit
    benoit Rennes, France
    If the node is running on a Unix machine, it's the load average over the last 1, 5 and 15 minutes (on Linux for example, see "man getloadavg" for more information on the load average). If the node is running on Windows, it's the CPU usage average over the last 1, 5 and 15 minutes.

    Benoit.
  • Hi,benoit

    thank you very much!