Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / apc_inrow_temp
blob56d31ddf4665956296f264708c9605b3f1f7e286
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 # .1.3.6.1.4.1.318.1.1.13.3.2.2.2.7.0 197 --> PowerNet-MIB::airIRRCUnitStatusRackInletTempMetric.0
28 # .1.3.6.1.4.1.318.1.1.13.3.2.2.2.9.0 202 --> PowerNet-MIB::airIRRCUnitStatusSupplyAirTempMetric.0
29 # .1.3.6.1.4.1.318.1.1.13.3.2.2.2.11.0 219 --> PowerNet-MIB::airIRRCUnitStatusReturnAirTempMetric.0
30 # .1.3.6.1.4.1.318.1.1.13.3.2.2.2.24.0 131 --> PowerNet-MIB::airIRRCUnitStatusEnteringFluidTemperatureMetric.0
31 # .1.3.6.1.4.1.318.1.1.13.3.2.2.2.26.0 154 --> PowerNet-MIB::airIRRCUnitStatusLeavingFluidTemperatureMetric.0
33 factory_settings["apc_inrow_temp_default_levels"] = {"levels": (30, 35)}
36 def parse_apc_inrow_temp(info):
37 parsed = {}
38 if info:
39 for what, what_item in zip(
40 info[0],
41 ["Rack Inlet", "Supply Air", "Return Air", "Entering Fluid", "Leaving Fluid"]):
42 if what not in ["", "-1"]:
43 parsed.setdefault(what_item, float(what) / 10)
45 return parsed
48 def inventory_apc_inrow_temp(parsed):
49 for key in parsed:
50 yield key, {}
53 def check_apc_inrow_temp(item, params, parsed):
54 if item in parsed:
55 return check_temperature(parsed[item], params, "apc_inrow_temp_%s" % item)
58 check_info["apc_inrow_temp"] = {
59 "parse_function": parse_apc_inrow_temp,
60 "inventory_function": inventory_apc_inrow_temp,
61 "check_function": check_apc_inrow_temp,
62 "service_description": "Temperature %s",
63 "has_perfdata": True,
64 "snmp_info": (
65 ".1.3.6.1.4.1.318.1.1.13.3.2.2.2",
67 "7", # airIRRCUnitStatusRackInletTempMetric
68 "9", # airIRRCUnitStatusSupplyAirTempMetric
69 "11", # airIRRCUnitStatusReturnAirTempMetric
70 "24", # airIRRCUnitStatusEnteringFluidTemperatureMetric
71 "26", # airIRRCUnitStatusLeavingFluidTemperatureMetric
72 ]),
73 "snmp_scan_function": lambda oid: oid(".1.3.6.1.2.1.1.2.0").startswith(".1.3.6.1.4.1.318.1.3"),
74 "group": "temperature",
75 "includes": ["temperature.include"],
76 "default_levels_variable": "apc_inrow_temp_default_levels"