52 lines
1.8 KiB
Python
52 lines
1.8 KiB
Python
# -*- coding: iso-8859-1 -*-
|
|
|
|
import re
|
|
from commands import getstatusoutput,getoutput
|
|
|
|
def execute(macro, text) :
|
|
|
|
lines = open('/etc/autostatus/local.status').readlines()
|
|
|
|
f = macro.formatter
|
|
code = ''
|
|
|
|
typlist = ['routes', 'serveurs', 'serveurs de la ferme', 'switches', 'bornes', u'services et de l\'extérieur']
|
|
|
|
for typ in typlist:
|
|
lines = lines [1:]
|
|
|
|
code += f.heading(1,3)
|
|
code += 'Autostatus des '+typ
|
|
code += f.heading(0,3)
|
|
code += f.table(1)
|
|
|
|
trucsdown = 0
|
|
|
|
while lines and not re.match('dummy_host_\d+ 0 \n', lines[0]):
|
|
if not re.search(' 0 ', lines[0]):
|
|
trucsdown += 1
|
|
line = lines[0].split(' ')
|
|
code += f.table_row(1)
|
|
code += f.table_cell(1,{'style':'background-color:silver'})
|
|
code += unicode(f.text('%s (%s)' % (line [0], getoutput("grep '^%s[^a-zA-Z]' /etc/autostatus/hosts | cut -d ' ' -f 5-" % line [0])) ), "iso-8859-15")
|
|
code += f.table_cell(0)
|
|
# nombre de non réponse au ping
|
|
if int(line[1]) > 2 :
|
|
code += f.table_cell(1,{'style':'background-color:red'})
|
|
code += f.text(u'down')
|
|
else :
|
|
code += f.table_cell(1,{'style':'background-color:blue'})
|
|
code += f.text(u'état incertain')
|
|
code += f.table_cell(0)
|
|
code += f.table_row(0)
|
|
lines = lines [1:]
|
|
|
|
if trucsdown == 0:
|
|
code += f.table_row(1)
|
|
code += f.table_cell(1,{'style':'background-color:lime'})
|
|
code += f.text(u'Ok pour les '+typ)
|
|
code += f.table_cell(0)
|
|
code += f.table_row(0)
|
|
code += f.table(0)
|
|
|
|
return code
|