1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
###############################################################################
# Copyright (c) 2017 Koren Lev (Cisco Systems), Yaron Yogev (Cisco Systems) #
# and others #
# #
# All rights reserved. This program and the accompanying materials #
# are made available under the terms of the Apache License, Version 2.0 #
# which accompanies this distribution, and is available at #
# http://www.apache.org/licenses/LICENSE-2.0 #
###############################################################################
from monitoring.setup.monitoring_handler import MonitoringHandler
from utils.inventory_mgr import InventoryMgr
from utils.special_char_converter import SpecialCharConverter
class MonitoringCheckHandler(MonitoringHandler, SpecialCharConverter):
def __init__(self, env):
super().__init__(env)
# add monitoring setup on remote host for given object
def create_monitoring_for_object(self, o, values):
self.replacements.update(self.env_monitoring_config)
self.replacements.update(values)
if 'host' in o:
host = self.inv.get_by_id(self.env, o['host'])
if host and 'ip_address' in host:
self.replacements['client_ip'] = host['ip_address']
type_str = o['type'] if 'type' in o else 'link_' + o['link_type']
file_type = 'client_check_' + type_str + '.json'
host = o['host']
sub_dir = '/host/' + host
content = self.prepare_config_file(
file_type,
{'side': 'client', 'type': file_type})
# need to put this content inside client.json file
client_file = 'client.json'
host = o['host']
client_file_content = self.get_config_from_db(host, client_file)
# merge checks attribute from current content into client.json
checks = client_file_content['config']['checks'] \
if (client_file_content and
'checks' in client_file_content['config']) \
else {}
checks.update(content.get('config', {}).get('checks', {}))
if client_file_content:
client_file_content['config']['checks'] = checks
else:
client_file_content = {
'config': {
'checks': checks
}
}
content = client_file_content
self.write_config_file(client_file, sub_dir, host, content)
|