source: genesis/tools/yaml2nag.py@ 10654

Last change on this file since 10654 was 10396, checked in by rick, 13 years ago

Fix releases and tell that 9.0-RELEASE is also IRIS based nodes (technically not always true).

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1#!/usr/bin/env python
2#
3# Script to create nagios output files from gformat configurtion files
4#
5# Original: Richard van Mansom <richardvm@wirelessleiden.nl>
6# Rick van der Zwet <rick@wirelessleiden.nl>
7
8import gformat
9
10def is_ap(ifacedump):
11 return ifacedump.has_key('dhcp') and not ifacedump['dhcp'] == 'no'
12
13def is_iris(node):
14 return node.has_key('release') and node['release'] in ['8.0-RELEASE', '7.2-RELEASE', '8.1-RELEASE', '8.2-RELEASE', '9.0-RELEASE']
15
16def is_up(datadump):
17 return datadump['status'] == 'up'
18
19
20
21def print_host(datadump, hostgroups):
22 datadump['hostgroups'] = ','.join(hostgroups)
23 print """
24define host{
25 use %(use)s
26 host_name %(autogen_realname)s
27 alias %(autogen_realname)s
28 address %(masterip)s
29 hostgroups %(hostgroups)s
30}
31""" % datadump
32
33
34if __name__ == '__main__':
35 # Process all hosts
36 for host in gformat.get_hostlist():
37 datadump = gformat.get_yaml(host)
38
39 # Make sure to process only active IRIS nodes
40 if not is_iris(datadump) or not is_up(datadump):
41 continue
42
43 hostgroups = []
44 if datadump['nodetype'] == 'CNode':
45 datadump['use'] = 'host-pnp'
46 hostgroups.append('nodes-7-2')
47
48 # Interface groups
49 for iface in datadump['autogen_iface_keys']:
50 ifacedump = datadump[iface]
51 if is_up(ifacedump) and not is_ap(ifacedump):
52 key = 'iface-%s' % ifacedump['autogen_ifname']
53 if not key in hostgroups:
54 hostgroups.append(key)
55
56 # ileiden groups
57 if datadump['ileiden']:
58 hostgroups.append('nodes-ileiden')
59
60 print_host(datadump, hostgroups)
61 elif datadump['nodetype'] == 'Proxy':
62 datadump['use'] = 'host-proxy'
63 hostgroups.append('proxies')
64
65 print_host(datadump, hostgroups)
66 else:
67 print "# ERROR: nodetype %(nodetype)s for %(autogen_realname)s not defined" % datadump
68
69
70
Note: See TracBrowser for help on using the repository browser.