Wednesday, June 18, 2014

send a mail when the there is a High CPU

sendalert.sh

pid='usr/ucb/ps -auxwww | grep ms1 | tr -s ‘ ‘ | cut -d ” ” -f 2 | sed ’2,$ d’`
prstat -L -p $pid 1 1 > prstat.trace
for x in `sed ’1d;$d’ prstat.trace | tr -s ‘ ‘ | cut -d ” ” -f 10`
do
a=`echo $x | tr -d ‘%’`
tHold=2.0
res=`expr $a \> $tHold`
if [ $res -eq 1 ]
then
echo “High CPU!! $a % “
fi
done

No comments:

Post a Comment