top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is load average in a linux ?

+1 vote
359 views
What is load average in a linux ?
posted Feb 12, 2016 by Mohammed Hussain

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

Load Average is defined as the average sum of the number of process waiting in the run queue and number of process currently executing over the period of 1,5 and 15 minutes. Using the ‘top’ and ‘uptime’ command we find the load average of a linux sever.

answer Feb 12, 2016 by Manikandan J
0 votes

If the number of active tasks utilizing CPU is less as compared to available CPU cores then the load average can be considered normal but if the no. of active tasks starts increasing with respect to available CPU cores then the load average will start rising.

For example in my case I can see

$ uptime
 00:43:58 up 212 days, 14:19,  4 users,  load average: 6.07, 7.08, 8.07

So as per the no. of cores I calculated i.e 8 cores and seeing the value 6.07 I shouldn't be worried much unless it crosses the red line value i.e. 8 for my case.

answer Feb 12, 2016 by Shivaranjini
Well explained . Thanks for sharing the detailed information .
Similar Questions
+3 votes

Result should be in xx.xx format (like 01.65).

+2 votes

How I 'll check how many rows inserted into every second on an average in a table of MySQL database?

+4 votes

Lets assume I have a system with RAM of 1GB. and virtual memory is 500MB. That brings to 1.5GB i.e. 1500 MBytes.

I have read somewhere that when I process is created stack of 8MB is associated to that process. So, assuming that any of the process is not allocating any dynamic memory or anything, then does it mean that, Maximum number of process that i can create is 1500/8 and i.e. 187 Process.

Please clarify my understanding,

...