Scripts to check Server Load Average
To keep a track on the server load, you can use any of the following scripts by setting a cronjob to run the script in a specific interval. 1. Using Bash: #!/bin/bash export _loadavg=$( cat /proc/loadavg | awk ‘{ print $1}’) echo “Load Average:$_loadavg on `date` ...
Read More