I'm trying to track down the cause of performance bottlenecks in an application I'm debugging under Linux. The various processes involved seem to spend a lot of their time blocking on I/O requests, and I was wondering if anybody knew any Linux tricks that let you see why a particular process is blocked/what resource it's waiting for? Is there anything useful in /proc for instance?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Whatever process it is, you use |
|||
|
|
|
You could use the |
|||
|
|
|
strace is your friend, because you can get the time spent into each system call, plus you can select the file descriptors and system call you are interested in. But you also can get support from the kernel : have a look at latencytop |
|||
|
|