diff options
author | makefu <github@syntax-fehler.de> | 2011-07-11 17:46:24 +0000 |
---|---|---|
committer | root <root@monitoring.shack> | 2011-07-11 17:47:11 +0000 |
commit | d1f79f0c6ffb1cf69247a6d4e8228800537e1074 (patch) | |
tree | f011e1cc3c4155319f6a42c3746861527643a643 /Monitoring/plugins | |
parent | 0a736ebc06620e3117dddf8119e4d66f5d39b6f7 (diff) |
Monitoring: fixed buggy config,Makefile
Diffstat (limited to 'Monitoring/plugins')
-rwxr-xr-x | Monitoring/plugins/check_temper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Monitoring/plugins/check_temper b/Monitoring/plugins/check_temper index f2e0fd32..95191026 100755 --- a/Monitoring/plugins/check_temper +++ b/Monitoring/plugins/check_temper @@ -16,12 +16,12 @@ 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]))) + 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)) + print ("!! %.2f°°C > %.2f°C (field %d)!" %(temp,thresholds[i],i)) ecode=2 except Exception,e: print("!! Something awful happened: "+str(e)) |