#!/bin/bash
srvrnm=`hostname` # get the hostname of the server
MRESTART="/sbin/service mysqld restart"
temp="/home/admin/script/tmp/mailinfo" # File storing formated output
cur=`uptime | awk '{print $10}' | tr -d , | cut -d. -f1` # Load avg
if [ $cur -ge 10 ]; then # Condition if
$MRESTART>/dev/null
################### Formation for email output ##################
echo "Hi," > $temp
echo " " >> $temp
echo " " >> $temp
echo "We have noticed high server load on `hostname`." >> $temp
echo " " >> $temp
echo " " >> $temp
echo "Thanks," >> $temp
echo " " >> $temp
echo "- Linux SysAdmin." >> $temp
######################################################
mail -s "Alert: Server Load `hostname`" [email protected] < $temp
fi
|