summaryrefslogtreecommitdiffstats
path: root/abs/core/xymon/login_notify.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2013-11-27 22:39:54 (GMT)
committerJames Meyer <james.meyer@operamail.com>2013-11-27 22:39:54 (GMT)
commit83df5fbd0c9dcfbb4ea943fd317df153cebb0097 (patch)
treec613faf26d9632f4521ebec8d027d120ea52030d /abs/core/xymon/login_notify.sh
parent82e79deb33a3e21737fa28d15cea63b4ae151037 (diff)
downloadlinhes_pkgbuild-83df5fbd0c9dcfbb4ea943fd317df153cebb0097.zip
linhes_pkgbuild-83df5fbd0c9dcfbb4ea943fd317df153cebb0097.tar.gz
linhes_pkgbuild-83df5fbd0c9dcfbb4ea943fd317df153cebb0097.tar.bz2
xymon: add login_notify.sh. This will write out and remove alert files to be parsed by myth_status
refs #943 refs #945
Diffstat (limited to 'abs/core/xymon/login_notify.sh')
-rw-r--r--abs/core/xymon/login_notify.sh64
1 files changed, 64 insertions, 0 deletions
diff --git a/abs/core/xymon/login_notify.sh b/abs/core/xymon/login_notify.sh
new file mode 100644
index 0000000..6696165
--- /dev/null
+++ b/abs/core/xymon/login_notify.sh
@@ -0,0 +1,64 @@
+#!/bin/bash
+. /etc/systemconfig
+#
+# BBCOLORLEVEL - The color of the alert: "red", "yellow" or "purple"
+# BBALPHAMSG - The full text of the status log triggering the alert
+# ACKCODE - The "cookie" that can be used to acknowledge the alert
+# RCPT - The recipient, from the SCRIPT entry
+# BBHOSTNAME - The name of the host that the alert is about
+# MACHIP - The IP-address of the host that has a problem
+# BBSVCNAME - The name of the service that the alert is about
+# BBSVCNUM - The numeric code for the service. From SVCCODES definition.
+# BBHOSTSVC - HOSTNAME.SERVICE that the alert is about.
+# BBHOSTSVCCOMMAS - As BBHOSTSVC, but dots in the hostname replaced with commas
+# BBNUMERIC - A 22-digit number made by BBSVCNUM, MACHIP and ACKCODE.
+# RECOVERED - Is "1" if the service has recovered.
+# DOWNSECS - Number of seconds the service has been down.
+# DOWNSECSMSG - When recovered, holds the text "Event duration : N" where
+
+# LOGIN_OUT=/tmp/login_out
+# echo $BBCOLORLEVEL >> $LOGIN_OUT
+# echo $BBALPHAMSG >>$LOGIN_OUT
+# echo $RCPT >>$LOGIN_OUT
+# echo $BBHOSTNAME >>$LOGIN_OUT
+# echo $BBSVCNAME >>$LOGIN_OUT
+# echo $BBHOSTSVC >>$LOGIN_OUT
+# echo $BBHOME >> $LOGIN_OUT
+# echo $DOWNSECS >> $LOGIN_OUT
+# echo $RECOVERED >> $LOGIN_OUT
+# echo "----------" >> $LOGIN_OUT
+
+#BBCOLORLEVEL=red
+#BBCOLORLEVEL=yellow
+#BBALPHAMSG="vmtest:disk red [751147]"
+#BBHOSTNAME="testcraa"
+#BBSVCNAME="disk"
+#BBSVCNAME="func"
+#BBHOSTSVC="vmtest.disk"
+
+#bbhome ends up as /home/xymon/server which is why I didn't use it here
+NOTICE_DIR="/home/xymon/var/login_alerts"
+if [ ! -d $NOTICE_DIR ]
+then
+ mkdir $NOTICE_DIR
+fi
+
+if [ "x$RECOVERED" == "x1" ]
+then
+ if [ -f $NOTICE_DIR/$BBHOSTSVC ]
+ then
+ rm -f $NOTICE_DIR/$BBHOSTSVC
+ else
+ echo "$NOTICE_DIR/$BBHOSTSVC is not present, didn't remove it"
+ fi
+else
+ echo "DOWN: $DOWNSECS" > $NOTICE_DIR/$BBHOSTSVC
+ echo "SERVICE: $BBSVCNAME" >> $NOTICE_DIR/$BBHOSTSVC
+ echo "HOST: $BBHOSTNAME" >> $NOTICE_DIR/$BBHOSTSVC
+ echo "ACKCODE: $ACKCODE" >> $NOTICE_DIR/$BBHOSTSVC
+ echo "MSG $BBALPHAMSG" >> $NOTICE_DIR/$BBHOSTSVC
+
+fi
+
+
+