Added .gitignore file and cleaned up some whitespace for consistency

documentation
Sean McArdle 2013-11-06 16:16:05 -08:00
parent f7512a8ebd
commit 0463ea73f9
2 changed files with 3 additions and 7 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
check.conf

View File

@ -78,7 +78,6 @@ fi
ping -c 2 $target > /dev/null
if [ $? -eq 0 ]; then
# target is alive, check cpu
show "host $target is up"
cpu=`ssh $ssh_user@$target top -bn 4 | grep Cpu\(s\) | awk '{print $5}' | cut -d % -f 1 | awk '{sum+=100-$1}END{print sum/NR}'`
@ -110,7 +109,6 @@ if [ $? -eq 0 ]; then
mem_used=`echo $mem_reading | awk '{print $10}'`
mem_percent_used=`echo "$mem_used $mem_total"| awk '{print $1/$2*100}' | cut -d . -f1`
# show "mem_reading: $mem_reading"
show "mem_total: $mem_total"
show "mem_used: $mem_used"
show "mem_percent_used: $mem_percent_used"
@ -122,7 +120,6 @@ if [ $? -eq 0 ]; then
fi
# check for required services
processes=`ssh $ssh_user@$target ps -A | tail -n +2 | awk '{print $4}'`
services=""
@ -140,14 +137,12 @@ if [ $? -eq 0 ]; then
fi
done
else
show "cannot reach host $target!"
notify_link=true
fi
# send notifications if needed
dir=/tmp/.notifications
filename=$(date +%Y%m%d%H%M%S)-alert.log
@ -208,8 +203,7 @@ if $send_alert ; then
fi
# if verbose, print values
# if -r passed, write sensor report
if $report ; then
echo "-- CPU Usage --"
echo $cpu