Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / enviromux
bloba51ae12b4811800d12cd01021de42983f60ee856
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2018 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 # .--temperature---------------------------------------------------------.
29 # | _ _ |
30 # | | |_ ___ _ __ ___ _ __ ___ _ __ __ _| |_ _ _ _ __ ___ |
31 # | | __/ _ \ '_ ` _ \| '_ \ / _ \ '__/ _` | __| | | | '__/ _ \ |
32 # | | || __/ | | | | | |_) | __/ | | (_| | |_| |_| | | | __/ |
33 # | \__\___|_| |_| |_| .__/ \___|_| \__,_|\__|\__,_|_| \___| |
34 # | |_| |
35 # +----------------------------------------------------------------------+
36 # | |
37 # '----------------------------------------------------------------------'
39 check_info['enviromux'] = {
40 'parse_function': parse_enviromux,
41 'inventory_function': inventory_enviromux_temperature,
42 'check_function': check_enviromux_temperature,
43 'service_description': 'Sensor %s',
44 'snmp_info': (
45 '.1.3.6.1.4.1.3699.1.1.11.1.3.1.1',
47 "1", # intSensorIndex
48 "2", # intSensorType
49 "3", # intSensorDescription
50 "4", # intSensorGroupNb
51 "5", # intSensorGroup
52 "6", # intSensorValue
53 "7", # intSensorUnit
54 "8", # intSensorUnitName
55 "9", # intSensorStatus
56 "10", # intSensorMinThreshold
57 "11", # intSensorMaxThreshold
58 # These appear to only return bogus values
59 #"12", # intSensorMinWarnThreshold
60 #"13", # intSensorMaxWarnThreshold
61 ]),
62 'includes': ["temperature.include", "enviromux.include"],
63 'has_perfdata': True,
64 'snmp_scan_function': enviromux_scan_function,
65 'group': "temperature",
69 # .--Voltage-------------------------------------------------------------.
70 # | __ __ _ _ |
71 # | \ \ / /__ | | |_ __ _ __ _ ___ |
72 # | \ \ / / _ \| | __/ _` |/ _` |/ _ \ |
73 # | \ V / (_) | | || (_| | (_| | __/ |
74 # | \_/ \___/|_|\__\__,_|\__, |\___| |
75 # | |___/ |
76 # +----------------------------------------------------------------------+
77 # | |
78 # '----------------------------------------------------------------------'
80 check_info['enviromux.voltage'] = {
81 'inventory_function': inventory_enviromux_voltage,
82 'check_function': check_enviromux_voltage,
83 'service_description': 'Sensor %s',
84 'has_perfdata': True,
85 'group': "voltage",
86 'default_levels_variable': "enviromux_default_levels",
87 'includes': ["enviromux.include"],
91 # .--Humidity------------------------------------------------------------.
92 # | _ _ _ _ _ _ |
93 # | | | | |_ _ _ __ ___ (_) __| (_) |_ _ _ |
94 # | | |_| | | | | '_ ` _ \| |/ _` | | __| | | | |
95 # | | _ | |_| | | | | | | | (_| | | |_| |_| | |
96 # | |_| |_|\__,_|_| |_| |_|_|\__,_|_|\__|\__, | |
97 # | |___/ |
98 # +----------------------------------------------------------------------+
99 # | |
100 # '----------------------------------------------------------------------'
102 check_info['enviromux.humidity'] = {
103 'inventory_function': inventory_enviromux_humidity,
104 'check_function': check_enviromux_humidity,
105 'service_description': 'Sensor %s',
106 'has_perfdata': True,
107 'includes': ["humidity.include", "enviromux.include"],
108 'group': "humidity",