2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
10 # | Copyright Mathias Kettner 2014 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.
29 # ISP Code version = 4.4.4
30 # Topology = PTTOPT_FABRIC
31 # N_Port Port World Wide Name = 0x500143800252658a
32 # Switch Port World Wide Name = 0x200400051e6302d7
33 # Driver state = ONLINE
34 # Hardware Path is = 0/0/1/1/0
35 # Driver-Firmware Dump Available = NO
37 # ISP Code version = 4.4.4
38 # Topology = PTTOPT_FABRIC
39 # N_Port Port World Wide Name = 0x500143800252658c
40 # Switch Port World Wide Name = 0x200400051e5d1942
41 # Driver state = ONLINE
42 # Hardware Path is = 1/0/12/1/0
43 # Driver-Firmware Dump Available = NO
46 def parse_hpux_fchba(info
):
49 if line
[0].startswith("/dev/"):
54 hba
[line
[0].strip()] = line
[1].strip()
58 def inventory_hpux_fchba(info
):
59 parsed
= parse_hpux_fchba(info
)
60 return [(name
, None) for name
, hba
in parsed
.items() if hba
["Driver state"] == "ONLINE"]
63 def check_hpux_fchba(item
, _no_params
, info
):
64 parsed
= parse_hpux_fchba(info
)
65 if item
not in parsed
:
66 return (3, "HBA noch found")
73 infos
.append("Hardware Path: %s" % hba
["Hardware Path is"])
75 infos
.append("Driver State: %s" % hba
["Driver state"])
76 if hba
["Driver state"] != "ONLINE":
80 infos
.append("Topology: %s" % hba
.get("Topology", "(none)"))
81 if hba
.get("Topology") not in [
89 if hba
.get("Driver-Firmware Dump Available", "NO") != "NO":
90 infos
.append("Driver-Firmware Dump Available(!!)")
93 return (state
, ", ".join(infos
))
96 check_info
['hpux_fchba'] = {
97 "check_function": check_hpux_fchba
,
98 "inventory_function": inventory_hpux_fchba
,
99 "service_description": "FC HBA %s",