Does anyone have experience with a tool that can provide an indication of disk IO load by filesystem path.
I use to 'iostat' utility, frequently, to learn how much disk activity is taking place on a Linux host. 'iostat' provides a per-device breakdown, so you can see activity on a particular block device. But it doesn't go any deeper than that--you can't, for instance, query the write load generated by 'httpd' in the directory '/var/log/httpd/'.
htop has lots of functions and measures all kinds of system statistics, whereas iotop only looks at per-process IO rates.
Using iotop for the first time is a little easier, since it's simpler.
iotop's '-o' ("only") flag hides processes not engaging in IO, which is VERY useful when troubleshooting disk hogs. I couldn't find something similar in htop.
Both tools work, but I'll use iotop, for this.
– Ryan B. Lynch Jun 23 '09 at 19:19