GUI CSS: Deployed view styles for layouts (CMK-1171)
[check_mk.git] / checks / hitachi_hnas_fpga
blobed2ac044a59514cc3a131986035e5b3d931a4613
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
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.
27 hitachi_hnas_fpga_default_levels = {"levels": (80.0, 90.0)}
30 def inventory_hitachi_hnas_fpga(info):
31 inventory = []
32 for clusternode, id_, name, _util in info:
33 inventory.append((clusternode + "." + id_ + " " + name, hitachi_hnas_fpga_default_levels))
34 return inventory
37 def check_hitachi_hnas_fpga(item, params, info):
38 warn, crit = params["levels"]
39 rc = 0
41 for clusternode, id_, name, util in info:
42 if clusternode + "." + id_ + " " + name == item:
43 util = float(util)
44 if util > warn:
45 rc = 1
46 if util > crit:
47 rc = 2
48 perfdata = [('fpga_util', str(util) + '%', warn, crit, 0, 100)]
49 return rc, "PNode %s FPGA %s %s utilization is %s%%" % (clusternode, id_, name,
50 util), perfdata
52 return 3, "No utilization found for FPGA %s" % item
55 check_info["hitachi_hnas_fpga"] = {
56 "check_function": check_hitachi_hnas_fpga,
57 "inventory_function": inventory_hitachi_hnas_fpga,
58 "service_description": "FPGA %s",
59 "has_perfdata": True,
60 "snmp_info": (".1.3.6.1.4.1.11096.6.1.1.6.1.4.1", [1, 2, 3, 4]),
61 # fpgaUtilizationCnIndex (=PNode), fpgaUtilizationFpgaIndex (=ID),
62 # fpgaUtilizationFpgaName, fpgaUtilization
63 "snmp_scan_function": hitachin_hnas_scan_function,
64 "group": "fpga_utilization",
65 "includes": ["hitachi_hnas.include"],