blob: 018962539be2f50198c371d8b31a5b88cda9cfb8 (
plain)
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
|
###############################################################################
# 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 #
###############################################################################
# handle monitoring event for OTEP objects
from monitoring.handlers.monitoring_check_handler import MonitoringCheckHandler
class HandleOtep(MonitoringCheckHandler):
def __init__(self, args):
super().__init__(args)
def handle(self, id, check_result):
object_id = id[:id.index('_')]
port_id = id[id.index('_')+1:]
doc = self.doc_by_id(object_id)
if not doc:
return 1
ports = doc['ports']
port = ports[port_id]
if not port:
self.log.error('Port not found: ' + port_id)
return 1
status = check_result['status']
port['status'] = self.STATUS_LABEL[status]
port['status_value'] = status
port['status_text'] = check_result['output']
# set object status based on overall state of ports
status_list = [p['status'] for p in ports.values() if 'status' in p]
# OTEP overall status:
# - Critical if no port is OK
# - Warning if some ports not OK
# - otherwise OK
status = \
2 if 'OK' not in status_list \
else 1 if 'Critical' in status_list or 'Warning' in status_list \
else 0
self.set_doc_status(doc, status, None, self.check_ts(check_result))
self.keep_message(doc, check_result)
return status
|