Is there a vmstat type command that works per-process that allows you to see how much time a process is blocked waiting for I/O, time in kernel and user code?

link|improve this question

Did you consider profiling the application with e.g. oprofile? That would give you more details about where exactly the application spends how much time (IO or otherwise). – lothar May 15 '09 at 1:27
feedback

4 Answers

up vote 1 down vote accepted

blktrace is what your looking for, block layer information, wait/blocking/busy etc..., very in depth, there are quite a few of packages that derive from it, seekwatcher, ...

Some other tool, simular to what sigjuice said, iotop, is also handy, but less informative for serious analysis. Also I believe btrace/blktrace is much more well suited for I/O tracing than oprofile, which is more general and increases load in comparison.

link|improve this answer
feedback

top (1) will show this imformation. You can specify an individual pid with -p

link|improve this answer
feedback

Also look at pidstat -d. It lets you see how much each process is reading and writing.

link|improve this answer
feedback

strace will show you how much time is spent in system call, however it won't tell you how much of this time is spent in waiting versus time really spent for I/O. you can select which system call you want to trace, or which type, it is quite powerful

latencytop would be another good tool, because your process can be waiting for I/O because of other processes, or because of some journalling daemon.

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.