1
vote
2answers
133 views

How to use Sar and kSar

How do I use sar to generate monitoring files on a remote server that I can then copy to my local and graph with the kSar tool? (My server can only be accessed via the cmd)
4
votes
2answers
791 views

Shell script to notify when CPU usage goes to 100%

sar -u 1 | awk '{print $9}' so this will give me "CPU Idle" value every second. I'd like to get email in this case the value goes to "0" 10 times in a row? What would be the appropriate way to ...
2
votes
1answer
589 views

Tool to show summarized cpu usage per user

I once saw report that contained information, that within given time frame, total number of x cpu minutes, were used, and this was: - afterwards was list of uids (or usernames), and total number of ...