a3117d8097fe2fcf39c946c5415f32303348ed2d
[monitor.git] / nodecommon.py
1
2 import time
3 import struct
4 from monitor.pcu import reboot
5
6 from monitor import util
7 from monitor import database
8 from monitor.wrapper import plc
9
10 from datetime import datetime 
11 from unified_model import PersistFlags
12
13 esc = struct.pack('i', 27)
14 RED     = esc + "[1;31m"
15 GREEN   = esc + "[1;32m"
16 YELLOW  = esc + "[1;33m"
17 BLUE    = esc + "[1;34m"
18 LIGHTBLUE       = esc + "[1;36m"
19 NORMAL  = esc + "[0;39m"
20
21 def red(str):
22         return RED + str + NORMAL
23
24 def yellow(str):
25         return YELLOW + str + NORMAL
26
27 def green(str):
28         return GREEN + str + NORMAL
29
30 def lightblue(str):
31         return LIGHTBLUE + str + NORMAL
32
33 def blue(str):
34         return BLUE + str + NORMAL
35
36 def get_current_state(fbnode):
37         if 'state' in fbnode:
38                 state = fbnode['state']
39         else:
40                 state = "none"
41         l = state.lower()
42         if l == "debug": l = 'dbg '
43         return l
44
45 def color_pcu_state(fbnode):
46
47         if 'plcnode' in fbnode and 'pcu_ids' in fbnode['plcnode'] and len(fbnode['plcnode']['pcu_ids']) > 0 :
48                 values = reboot.get_pcu_values(fbnode['plcnode']['pcu_ids'][0])
49                 if values == None:
50                         return fbnode['pcu']
51         else:
52                 if 'pcu' not in fbnode:
53                         return 'NOPCU'
54                 else:
55                         return fbnode['pcu']
56
57         if 'reboot' in values:
58                 rb = values['reboot']
59                 if rb == 0 or rb == "0":
60                         return fbnode['pcu'] + "OK  "
61                         #return fbnode['pcu'] + "OK  "
62                         #return green(fbnode['pcu'])
63                 elif "NetDown" == rb  or "Not_Run" == rb:
64                         return fbnode['pcu'] + "DOWN"
65                         #return yellow(fbnode['pcu'])
66                 else:
67                         return fbnode['pcu'] + "BAD "
68                         #return red(fbnode['pcu'])
69         else:
70                 #return red(fbnode['pcu'])
71                 return fbnode['pcu'] + "BAD "
72
73 def color_boot_state(l):
74         if    l == "dbg": return yellow("debg")
75         elif  l == "dbg ": return yellow("debg")
76         elif  l == "diag": return lightblue(l)
77         elif  l == "disable": return red("dsbl")
78         elif  l == "down": return red(l)
79         elif  l == "boot": return green(l)
80         elif  l == "rins": return blue(l)
81         else:
82                 return l
83
84 def diff_time(timestamp, abstime=True):
85         import math
86         now = time.time()
87         if timestamp == None:
88                 return "unknown"
89         if abstime:
90                 diff = now - timestamp
91         else:
92                 diff = timestamp
93         # return the number of seconds as a difference from current time.
94         t_str = ""
95         if diff < 60: # sec in min.
96                 t = diff / 1
97                 t_str = "%s sec ago" % int(math.ceil(t))
98         elif diff < 60*60: # sec in hour
99                 t = diff / (60)
100                 t_str = "%s min ago" % int(math.ceil(t))
101         elif diff < 60*60*24: # sec in day
102                 t = diff / (60*60)
103                 t_str = "%s hrs ago" % int(math.ceil(t))
104         elif diff < 60*60*24*14: # sec in week
105                 t = diff / (60*60*24)
106                 t_str = "%s days ago" % int(math.ceil(t))
107         elif diff <= 60*60*24*30: # approx sec in month
108                 t = diff / (60*60*24*7)
109                 t_str = "%s wks ago" % int(math.ceil(t))
110         elif diff > 60*60*24*30: # approx sec in month
111                 t = diff / (60*60*24*30)
112                 t_str = "%s mnths ago" % int(t)
113         return t_str
114
115 def nodegroup_display(node, fb, conf=None):
116         if node['hostname'] in fb['nodes']:
117                 node['current'] = get_current_state(fb['nodes'][node['hostname']]['values'])
118         else:
119                 node['current'] = 'none'
120
121         if fb['nodes'][node['hostname']]['values'] == []:
122                 return ""
123
124         s = fb['nodes'][node['hostname']]['values']['kernel'].split()
125         if len(s) >=3:
126                 node['kernel'] = s[2]
127         else:
128                 node['kernel'] = fb['nodes'][node['hostname']]['values']['kernel']
129                 
130         if '2.6' not in node['kernel']: node['kernel'] = ""
131         if conf and not conf.nocolor:
132             node['boot_state']  = color_boot_state(node['boot_state'])
133             node['current']     = color_boot_state(node['current'])
134         #node['boot_state']     = node['boot_state']
135         #node['current']        = node['current']
136         node['pcu'] = fb['nodes'][node['hostname']]['values']['pcu']
137         node['lastupdate'] = diff_time(node['last_contact'])
138         pf = PersistFlags(node['hostname'], 1, db='node_persistflags')
139         try:
140                 node['lc'] = diff_time(pf.last_changed)
141         except:
142                 node['lc'] = "err"
143         ut = fb['nodes'][node['hostname']]['values']['comonstats']['uptime']
144         if ut != "null":
145                 ut = diff_time(float(fb['nodes'][node['hostname']]['values']['comonstats']['uptime']), False)
146         node['uptime'] = ut
147
148         return "%(hostname)-42s %(boot_state)8s %(current)5s %(pcu)6s %(key)10.10s... %(kernel)35.35s %(lastupdate)12s, %(lc)s, %(uptime)s" % node
149
150 def datetime_fromstr(str):
151         if '-' in str:
152                 try:
153                         tup = time.strptime(str, "%Y-%m-%d")
154                 except:
155                         tup = time.strptime(str, "%Y-%m-%d-%H:%M")
156         elif '/' in str:
157                 tup = time.strptime(str, "%m/%d/%Y")
158         else:
159                 tup = time.strptime(str, "%m/%d/%Y")
160         ret = datetime.fromtimestamp(time.mktime(tup))
161         return ret
162
163 def get_nodeset(config):
164         """
165                 Given the config values passed in, return the set of hostnames that it
166                 evaluates to.
167         """
168         api = plc.getAuthAPI()
169         l_nodes = database.dbLoad("l_plcnodes")
170
171         if config.nodelist:
172                 f_nodes = util.file.getListFromFile(config.nodelist)
173                 l_nodes = filter(lambda x: x['hostname'] in f_nodes, l_nodes)
174         elif config.node:
175                 f_nodes = [config.node]
176                 l_nodes = filter(lambda x: x['hostname'] in f_nodes, l_nodes)
177         elif config.nodegroup:
178                 ng = api.GetNodeGroups({'name' : config.nodegroup})
179                 l_nodes = api.GetNodes(ng[0]['node_ids'], ['hostname'])
180         elif config.site:
181                 site = api.GetSites(config.site)
182                 l_nodes = api.GetNodes(site[0]['node_ids'], ['hostname'])
183                 
184         l_nodes = [node['hostname'] for node in l_nodes]
185
186         # perform this query after the above options, so that the filter above
187         # does not break.
188         if config.nodeselect:
189                 fb = database.dbLoad("findbad")
190                 l_nodes = node_select(config.nodeselect, fb['nodes'].keys(), fb)
191
192         return l_nodes
193