summaryrefslogtreecommitdiffstats
path: root/Monitoring/plugins/check_temper
diff options
context:
space:
mode:
authorEUcancER <root@euer.krebsco.de>2012-10-05 10:46:47 +0200
committerEUcancER <root@euer.krebsco.de>2012-10-05 10:46:47 +0200
commitc5fcba52713424c1653b802b4090bb182782362d (patch)
tree1cce378e27e4a5672672185f5c93ee2a25a1c224 /Monitoring/plugins/check_temper
parent07939d80687399a8ad2fff0242b708013018cc14 (diff)
parent6c89839b7fc344608e61c8916ac9d9925fa98d14 (diff)
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'Monitoring/plugins/check_temper')
-rwxr-xr-xMonitoring/plugins/check_temper31
1 files changed, 0 insertions, 31 deletions
diff --git a/Monitoring/plugins/check_temper b/Monitoring/plugins/check_temper
deleted file mode 100755
index 95191026..00000000
--- a/Monitoring/plugins/check_temper
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/python
-# -*- coding: utf-8 -*-
-import sys
-import urllib
-
-if len(sys.argv) < 2 or '-h' in sys.argv:
- print ("?? usage: %s URL [high-val field 1] [high field 2] ..." % sys.argv[0])
- print ("?? Server reply should look like this: '2011-07-11T09:00 50.0 40.0'")
- exit(3)
-
-URL=sys.argv[1]
-thresholds=[ float(i) for i in sys.argv[2:]]
-
-ecode=0
-try:
- ret = urllib.urlopen(URL).read().split()
- date = ret[0]
- temps = [float(i) for i in ret[1:]]
- print ("** %s : %s" % (date,' '.join([str(i)+"°C" for i in temps])))
- if len(temps) != len(thresholds):
- raise Exception("Number of temps != number of given thresholds")
- for i,temp in enumerate(temps):
- if temp > thresholds[i]:
- print ("!! %.2f°°C > %.2f°C (field %d)!" %(temp,thresholds[i],i))
- ecode=2
-except Exception,e:
- print("!! Something awful happened: "+str(e))
- exit (1)
-if not ecode:
- print ("** Everything is fine!")
-exit(ecode)