summaryrefslogtreecommitdiffstats
path: root/abs/core/xymon/hobbit-myth-orphan.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2011-12-07 19:45:02 (GMT)
committerJames Meyer <james.meyer@operamail.com>2011-12-07 19:45:02 (GMT)
commit582455878ef98dfadc0618309686c85b135f7a23 (patch)
treea87b677b96c168524576cf32870487758d0b43ba /abs/core/xymon/hobbit-myth-orphan.sh
parent65b2738ba8a6b80a17c5a2953a29be935b15d18c (diff)
downloadlinhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.zip
linhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.tar.gz
linhes_pkgbuild-582455878ef98dfadc0618309686c85b135f7a23.tar.bz2
xymon: first build, includes both server and client builds.
xymon is a system used to monitor various things about each host. Possible to replace rrdtool and monitorx
Diffstat (limited to 'abs/core/xymon/hobbit-myth-orphan.sh')
-rw-r--r--abs/core/xymon/hobbit-myth-orphan.sh54
1 files changed, 54 insertions, 0 deletions
diff --git a/abs/core/xymon/hobbit-myth-orphan.sh b/abs/core/xymon/hobbit-myth-orphan.sh
new file mode 100644
index 0000000..f9f7d54
--- /dev/null
+++ b/abs/core/xymon/hobbit-myth-orphan.sh
@@ -0,0 +1,54 @@
+#!/bin/bash
+TMPFILE=/tmp/oprhan.result
+/usr/local/bin/myth.find_orphans.pl > $TMPFILE
+
+
+ COLUMN=orphan # Name of the column
+ COLOR=green # By default, everything is OK
+
+ # Do whatever you need to test for something
+ # As an example, go red if /tmp/badstuff exists.
+
+thumbs=`grep -A 4 "Summary:" $TMPFILE |tail -n 1 | cut -d" " -f3 `
+if [ ! x$thumbs = x0 ]
+then
+ MSG="$thumbs orphaned thumbnails with no corresponding recording"
+ COLOR='yellow'
+fi
+
+missing=`grep -A 2 "Summary:" $TMPFILE |tail -n 1 | cut -d, -f2 | cut -d" " -f2 `
+if [ ! x$missing = x0 ]
+then
+ COLOR='red'
+MSG="${MSG}
+ `grep -A 2 "Summary:" $TMPFILE |tail -n 1 ` "
+fi
+
+unkown=`grep -A 5 "Summary:" $TMPFILE |tail -n 1 | cut -d" " -f3 `
+if [ ! x$unkown = x0 ]
+then
+ COLOR='red'
+MSG="${MSG}
+`grep -A 5 "Summary:" $TMPFILE |tail -n 1 `"
+fi
+
+
+MSG="${MSG}
+
+
+ `cat $TMPFILE`
+ "
+
+ # Tell Hobbit about it
+ $BB $BBDISP "status $MACHINE.$COLUMN $COLOR `date`
+/usr/local/bin/myth.find_orphans.pl
+
+ ${MSG}
+
+ "
+
+ exit 0
+
+
+
+