Cleanup config.nodes_of
[check_mk.git] / checks / datapower_pdrive
blob847c2695fde4c8dcadae7afa6f3a75b28b036ed4
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_pdrive(info):
29 for controller, device, _ldrive, _position, status, _progress, _vendor, _product, _fail in info:
30 if status != "12":
31 item = "%s-%s" % (controller, device)
32 yield item, None
35 def check_datapower_pdrive(item, _no_params, info):
36 datapower_pdrive_status = {
37 "1": (0, "Unconfigured/Good"),
38 "2": (0, "Unconfigured/Good/Foreign"),
39 "3": (1, "Unconfigured/Bad"),
40 "4": (1, "Unconfigured/Bad/Foreign"),
41 "5": (0, "Hot spare"),
42 "6": (1, "Offline"),
43 "7": (2, "Failed"),
44 "8": (1, "Rebuilding"),
45 "9": (0, "Online"),
46 "10": (1, "Copyback"),
47 "11": (1, "System"),
48 "12": (1, "Undefined"),
50 datapower_pdrive_fail = {
51 "1": (2, "disk reports failure"),
52 "2": (0, "disk reports no failure"),
54 datapower_pdrive_position = {
55 "1": "HDD 0",
56 "2": "HDD 1",
57 "3": "HDD 2",
58 "4": "HDD 3",
59 "5": "undefined",
61 for controller, device, ldrive, position, status, progress, vendor, product, fail in info:
62 if item == "%s-%s" % (controller, device):
63 member_of_ldrive = "%s-%s" % (controller, ldrive)
64 state, state_txt = datapower_pdrive_status[status]
65 position_txt = datapower_pdrive_position[position]
66 if int(progress) != 0:
67 progress_txt = " - Progress: %s%%" % progress
68 else:
69 progress_txt = ""
70 infotext = "%s%s, Position: %s, Logical Drive: %s, Product: %s %s"\
71 % (state_txt, progress_txt, position_txt, member_of_ldrive, vendor, product)
72 yield state, infotext
74 if fail:
75 yield datapower_pdrive_fail[fail]
78 check_info['datapower_pdrive'] = {
79 "inventory_function": inventory_datapower_pdrive,
80 "check_function": check_datapower_pdrive,
81 "service_description": "Physical Drive %s",
82 "snmp_info": (
83 ".1.3.6.1.4.1.14685.3.1.260.1",
85 "1", # dpStatusRaidPhysicaldrivetatusControllerID
86 "2", # dpStatusRaidPhysicaldrivetatusDeviceID
87 "4", # dpStatusRaidPhysicaldrivetatusLogicalDriveID
88 "6", # dpStatusRaidPhysicaldrivetatusPosition
89 "7", # dpStatusRaidPhysicaldrivetatusState
90 "8", # dpStatusRaidPhysicaldrivetatusProgressPercent
91 "14", # dpStatusRaidPhysicaldrivetatusVendorID
92 "15", # dpStatusRaidPhysicaldrivetatusProductID
93 "18", # dpStatusRaidPhysicaldrivetatusFailure
94 ]),
95 "snmp_scan_function": lambda oid: oid(".1.3.6.1.2.1.1.2.0") in
96 [".1.3.6.1.4.1.14685.1.7", ".1.3.6.1.4.1.14685.1.3"],