Reputation: 10003
If i call uptime on my server via shell i get string like this:
# uptime
22.23.23 up 5 days, 51 min, 3 users, load average 34.32 16.08 5.07
what does this part mean load average 34.32 16.08 5.07 exactly - why three digits? does it mean three cores or what?
Upvotes: 9
Views: 12866
Reputation: 143172
They are the load averages over the last 1, 5, and 15 minutes, they are not related to your cores.
From the man page:
uptime gives a one line display of the following information. The
current time, how long the system has been running, how many users
are currently logged on, and the system load averages for the past
1, 5, and 15 minutes.
For more information see man uptime.
Upvotes: 9