How do show the current list of processes and threads currently in the run queue?
That is to say, if my server's load average is 32.1, then there were on the average about 32 processes or threads ready to run at any given point in time over the past few minutes. I would like to find out what they are.
Something like ps axHr
should do the trick, but on a server with a load average in the 80 range, it shows only 3 or 4 items.
The best I've come up with is ps axH | grep -v " S"
, but that seems kludgy and fragile, and not even totally correct.