GUI CSS: Deployed view styles for layouts (CMK-1171)
[check_mk.git] / checks / hp_webmgmt_status
blob06728e8abbf41f474188afd1d9cb05ca0e521151
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2016 mk@mathias-kettner.de |
11 # +------------------------------------------------------------------+
13 # This file is part of Check_MK.
14 # The official homepage is at http://mathias-kettner.de/check_mk.
16 # check_mk is free software; you can redistribute it and/or modify it
17 # under the terms of the GNU General Public License as published by
18 # the Free Software Foundation in version 2. check_mk is distributed
19 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
20 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
21 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
22 # tails. You should have received a copy of the GNU General Public
23 # License along with GNU Make; see the file COPYING. If not, write
24 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
25 # Boston, MA 02110-1301 USA.
28 def inventory_hp_webmgmt_status(info):
29 for index, _health in info[0]:
30 yield index, None
33 def check_hp_webmgmt_status(item, _no_params, info):
34 status_map = {
35 "1": (3, "unknown"),
36 "2": (3, "unused"),
37 "3": (0, "ok"),
38 "4": (1, "warning"),
39 "5": (2, "critical"),
40 "6": (2, "non-recoverable")
43 device_model = info[1][0][0]
44 serial_number = info[2][0][0]
45 for index, health in info[0]:
46 if index == item:
47 status, status_msg = status_map[health]
48 infotext = "Device status: %s" % status_msg
49 if device_model and serial_number:
50 infotext += " [Model: %s, Serial Number: %s]" % (device_model, serial_number)
51 return status, infotext
54 check_info['hp_webmgmt_status'] = {
55 'check_function': check_hp_webmgmt_status,
56 'inventory_function': inventory_hp_webmgmt_status,
57 'service_description': "Status %s",
58 'snmp_scan_function': lambda oid: oid(".1.3.6.1.2.1.1.2.0").startswith(".1.3.6.1.4.1.11") and
59 oid(".1.3.6.1.4.1.11.2.36.1.1.5.1.1.*"),
60 'snmp_info': [
62 '.1.3.6.1.4.1.11.2.36.1.1.5.1.1',
64 1, # hpHttpMgDeviceIndex
65 3 # hpHttpMgDeviceHealth
66 ]),
67 ('.1.3.6.1.4.1.11.2.36.1.1.5.1.1.9', [1]), # Device Model
68 ('.1.3.6.1.4.1.11.2.36.1.1.5.1.1.10', [1]), # Device Serial Number