~ubuntu-branches/ubuntu/precise/nagios-plugins/precise-proposed

« back to all changes in this revision

Viewing changes to contrib/aix/check_crit_dsk

  • Committer: Bazaar Package Importer
  • Author(s): Guido Trotter
  • Date: 2004-06-15 15:37:48 UTC
  • Revision ID: james.westby@ubuntu.com-20040615153748-pq7702qdzghqfcns
Tags: upstream-1.3.1.0
ImportĀ upstreamĀ versionĀ 1.3.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
#=========================================================================
 
4
#  Critical Disk Checker utility
 
5
#
 
6
#  This is the same as the disk checker utility but we use it as
 
7
#  a seperate service in Nagios to report on partitions that
 
8
#  have reached 100% capacity.
 
9
#
 
10
#  We have excluded /dev/cd0 because the cdrom drive will always
 
11
#  report 100% capacity if a CD is in the drive.
 
12
#
 
13
#    Authors:  TheRocker
 
14
#              SpEnTBoY
 
15
#
 
16
#    Email:    therocker@pawprints.2y.net
 
17
#              lonny@abyss.za.org
 
18
#
 
19
#=======================================================================
 
20
 
 
21
NUMBER=`rsh $1 -l root df -kP | grep -vE ":|/dev/cd0" | grep -E "100%" | tr -s ' '| cut -d' ' -f5 | cut -c1-3 | line`
 
22
TMPFILE=/tmp/tmpcrit.hndl
 
23
TMPTOO=/tmp/twocrit.hndl
 
24
 
 
25
if [ "$NUMBER" -eq 100 ]
 
26
then
 
27
 
 
28
 `rsh $1 -l root df -kP |grep -vE ":|/dev/cd0" | grep -E "100%" | tr -s ' '| cut -d' ' -f6,5 >> $TMPFILE`
 
29
 
 
30
     LINES=`wc -l /tmp/tmpcrit.hndl | cut -c8`
 
31
     LINESCTL=`wc -l /tmp/tmpcrit.hndl | cut -c8 `
 
32
     echo "Filesystems over 99% --> \c" 
 
33
 
 
34
#===============================================================
 
35
#  Just a little bit to check for multiple occurances of the
 
36
#  condition.
 
37
#===============================================================
 
38
 
 
39
     while [ $LINESCTL != 0 ]
 
40
      do
 
41
 
 
42
       cat $TMPFILE | tail -$LINESCTL > $TMPTOO
 
43
       cat $TMPTOO > $TMPFILE
 
44
       LINESCTL=$(( $LINESCTL -1 ))
 
45
       LINES=$(( $LINES -1 ))
 
46
       DATA=`head -1 /tmp/tmpcrit.hndl`
 
47
       echo "( $DATA ) \c"
 
48
       
 
49
     
 
50
     done
 
51
     echo "\n"
 
52
 
 
53
#===============================================================
 
54
#  File clean up.  Always pick up after yourself.  Disk space 
 
55
#  doesn't grow on trees you know.
 
56
#===============================================================
 
57
 
 
58
     rm -f $TMPFILE
 
59
     rm -f $TMPTOO
 
60
     exit 2 
 
61
 
 
62
else
 
63
 
 
64
    echo "No Filesystems over 99%... OK"
 
65
    exit 0
 
66
fi