CPU utilization in linux script alert
Hi, This below script will update you whenever the server load goes beyond 15 with the load and the top 10 process which uses maximum CPU. #!/bin/bash SUBJECT="`hostname`server load is high" TO=user@host.com uptime > /tmp/load if [ `uptime | awk... Continue reading →