Load Alert Monitoring

http://nixcraft.com/shell-scripting/923-cpu-usage-shell-script-monitoring-cpu-usage.html http://itmission.org/Main/Load-alert-bash-script-for-linux-servers Here is the script if 15 minutes load goes >= 6.0. Code: ----------------------------------------------------------------- #!/bin/bash # Set up limit below NOTIFY="6.0" FTEXT='load average:' # 15 min F15M="$(uptime | awk…

Continue ReadingLoad Alert Monitoring

Renice

The “niceness” of a process is a numeric hint to the kernel about how the process should be treated in relation to other processes contending for the CPU. The strange…

Continue ReadingRenice