The load on my server is very high, even though there doesn't seem to be much disk activity and the CPU is idle. Using sar, I can see the run queue is getting full, but is there any way to see what's in the run queue?

link|improve this question
What do you mean by "the load on my server is very high" and "the CPU is idle"? Load average should correspond somewhat to CPU load. – mpez0 Jun 2 '10 at 10:47
feedback

2 Answers

Start with top. It should list all or most of the run queue in the first page. Also 'ps r -A' will list all processes in the run queue.

link|improve this answer
feedback
ps –ef 

shows every (-e) running process in a full (-f) detailed list

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.