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 |
|
---|
8 | import gformat
|
---|
9 |
|
---|
10 | def is_ap(ifacedump):
|
---|
11 | return ifacedump.has_key('dhcp') and not ifacedump['dhcp'] == 'no'
|
---|
12 |
|
---|
13 | def 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 |
|
---|
16 | def is_up(datadump):
|
---|
17 | return datadump['status'] == 'up'
|
---|
18 |
|
---|
19 |
|
---|
20 |
|
---|
21 | def print_host(datadump, hostgroups):
|
---|
22 | datadump['hostgroups'] = ','.join(hostgroups)
|
---|
23 | print """
|
---|
24 | define host{
|
---|
25 | use %(use)s
|
---|
26 | host_name %(name)s
|
---|
27 | alias %(name)s
|
---|
28 | address %(ns_ip)s
|
---|
29 | hostgroups %(hostgroups)s
|
---|
30 | }
|
---|
31 | """ % datadump
|
---|
32 |
|
---|
33 |
|
---|
34 | if __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'] in ['CNode', 'Hybrid']:
|
---|
45 | hostgroups.append('nano5')
|
---|
46 |
|
---|
47 | # Interface groups
|
---|
48 | for iface in datadump['autogen_iface_keys']:
|
---|
49 | ifacedump = datadump[iface]
|
---|
50 | try:
|
---|
51 | if not ifacedump['mode'] == 'ap' and is_up(ifacedump):
|
---|
52 | ifacedump['use'] = 'host-pnp'
|
---|
53 | ifacedump['name'] = "%s-%s" % (host, ifacedump['autogen_ifname'])
|
---|
54 | ifacedump['ns_ip'] = ifacedump['ns_ip'].split('/')[0]
|
---|
55 | key = 'iface-%s' % ifacedump['autogen_ifname']
|
---|
56 | print_host(ifacedump, hostgroups)
|
---|
57 | except:
|
---|
58 | continue
|
---|
59 |
|
---|