Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / intel_true_scale_chassis_temp
blob6189294b4e8cc3248158d2267a3fc47c845cf002
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2016 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.10222.2.1.5.1.0 1 --> ICS-CHASSIS-MIB::icsChassisTemperatureStatus.0
28 # .1.3.6.1.4.1.10222.2.1.5.2.0 0 --> ICS-CHASSIS-MIB::icsChassisTemperatureWarning.0
31 def inventory_intel_true_scale_chassis_temp(info):
32 if info and info[0][0] != "6":
33 return [(None, None)]
36 def check_intel_true_scale_chassis_temp(_no_item, _no_params, info):
37 map_status = {
38 "1": (0, "normal"),
39 "2": (1, "high"),
40 "3": (2, "excessively high"),
41 "4": (1, "low"),
42 "5": (2, "excessively low"),
43 "6": (3, "no sensor"),
44 "7": (3, "unknown"),
46 map_warn_config = {
47 "0": "unspecified",
48 "1": "heed warning",
49 "2": "ignore warning",
50 "3": "no warning feature",
53 state, state_readable = map_status[info[0][0]]
54 return state, "Status: %s, Warning configuration: %s" % \
55 (state_readable, map_warn_config[info[0][1]])
58 check_info['intel_true_scale_chassis_temp'] = {
59 'inventory_function': inventory_intel_true_scale_chassis_temp,
60 'check_function': check_intel_true_scale_chassis_temp,
61 'service_description': 'Temperature status chassis',
62 'snmp_info': (
63 ".1.3.6.1.4.1.10222.2.1.5",
65 "1", # ICS-CHASSIS-MIB::icsChassisTemperatureStatus
66 "2", # ICS-CHASSIS-MIB::icsChassisTemperatureWarning
67 ]),
68 'snmp_scan_function': scan_intel_true_scale,
69 'includes': ['intel_true_scale.include'],