Cleanup config.nodes_of
[check_mk.git] / checks / datapower_ldrive
blobe86cc6552afc1a4d0da1a53c7c6dbd9ea3e93aed
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2015 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_datapower_ldrive(info):
29 for controller, ldrive, _raid_level, _num_drives, _status in info:
30 item = "%s-%s" % (controller, ldrive)
31 yield item, None
34 def check_datapower_ldrive(item, _no_params, info):
35 datapower_ldrive_status = {
36 "1": (2, "offline"),
37 "2": (2, "partially degraded"),
38 "3": (2, "degraded"),
39 "4": (0, "optimal"),
40 "5": (1, "unknown"),
42 datapower_ldrive_raid = {
43 "1": "0",
44 "2": "1",
45 "3": "1E",
46 "4": "5",
47 "5": "6",
48 "6": "10",
49 "7": "50",
50 "8": "60",
51 "9": "undefined",
53 for controller, ldrive, raid_level, num_drives, status in info:
54 if item == "%s-%s" % (controller, ldrive):
55 state, state_txt = datapower_ldrive_status[status]
56 raid_level = datapower_ldrive_raid[raid_level]
57 infotext = "Status: %s, RAID Level: %s, Number of Drives: %s"\
58 % (state_txt, raid_level, num_drives)
59 return state, infotext
62 check_info['datapower_ldrive'] = {
63 "inventory_function": inventory_datapower_ldrive,
64 "check_function": check_datapower_ldrive,
65 "service_description": "Logical Drive %s",
66 "snmp_info": (
67 ".1.3.6.1.4.1.14685.3.1.259.1",
69 "1", # dpStatusRaidLogicaldrivetatusControllerID
70 "2", # dpStatusRaidLogicaldrivetatusLogicalDriveID
71 "4", # dpStatusRaidLogicaldrivetatusRaidLevel
72 "5", # dpStatusRaidLogicaldrivetatusNumPhysicalDrives
73 "6", # dpStatusRaidLogicaldrivetatusState
74 ]),
75 "snmp_scan_function": lambda oid: oid(".1.3.6.1.2.1.1.2.0") in
76 [".1.3.6.1.4.1.14685.1.7", ".1.3.6.1.4.1.14685.1.3"],