>Hello list,
>
>Has anyone here developed a utility to record the one-minute load average once 
>per minute and log the results? The first bit is easy: just cat /proc/loadavg, 
>but the logging has me stumped for the moment.

while [ true ] ; do cat /proc/loadavg |logger; sleep 60; done

But you will want to read man logger to see where/how to direct the
logging to somewhere more convenient than default.

DaveF
>
>I see there's a QT-Charts module, but my impression is that it's a 
>programmer's tool.
>
>Ideas?
>
>-- 
>Regards,
>Peter.
>
>
>
>

Reply via email to