On 2009-05-08 John Lange wrote:
Thinking that maybe something was suddenly chewing up disk and then being cleared I setup a little cron to log disk usage every 15 minutes.
Don't use cron for that. Just do a bash or perl script that runs all the time with a sleep 900 between df (or whatever else you want to see) calls, all wrapped in a while(1) {} loop.