Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / enviromux_sems_internal
blob5f8ba7600937dc6995ff4653540a2d071d36e7e0
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.
27 check_info['enviromux_sems'] = {
28 'parse_function': parse_enviromux,
29 'inventory_function': inventory_enviromux_temperature,
30 'check_function': check_enviromux_temperature,
31 'service_description': 'Sensor %s',
32 'snmp_info': (
33 '.1.3.6.1.4.1.3699.1.1.2.1.4.1.1',
35 "1", # intSensorIndex
36 "2", # intSensorType
37 "3", # intSensorDescription
38 "4", # intSensorGroupNb
39 "5", # intSensorGroup
40 "6", # intSensorValue
41 "7", # intSensorUnit
42 "8", # intSensorUnitName
43 "9", # intSensorStatus
44 "10", # intSensorMinThreshold
45 "11", # intSensorMaxThreshold
46 # These appear to only return bogus values
47 #"12", # intSensorMinWarnThreshold
48 #"13", # intSensorMaxWarnThreshold
49 ]),
50 'includes': ["temperature.include", "enviromux.include"],
51 'has_perfdata': True,
52 'snmp_scan_function': enviromux_sems_scan_function,
53 'group': "temperature",
57 # .--Voltage-------------------------------------------------------------.
58 # | __ __ _ _ |
59 # | \ \ / /__ | | |_ __ _ __ _ ___ |
60 # | \ \ / / _ \| | __/ _` |/ _` |/ _ \ |
61 # | \ V / (_) | | || (_| | (_| | __/ |
62 # | \_/ \___/|_|\__\__,_|\__, |\___| |
63 # | |___/ |
64 # +----------------------------------------------------------------------+
65 # | |
66 # '----------------------------------------------------------------------'
68 check_info['enviromux_sems.voltage'] = {
69 'inventory_function': inventory_enviromux_voltage,
70 'check_function': check_enviromux_voltage,
71 'service_description': 'Sensor %s',
72 'has_perfdata': True,
73 'group': "voltage",
74 'default_levels_variable': "enviromux_default_levels",
75 'includes': ["enviromux.include"],
78 # .--Humidity------------------------------------------------------------.
79 # | _ _ _ _ _ _ |
80 # | | | | |_ _ _ __ ___ (_) __| (_) |_ _ _ |
81 # | | |_| | | | | '_ ` _ \| |/ _` | | __| | | | |
82 # | | _ | |_| | | | | | | | (_| | | |_| |_| | |
83 # | |_| |_|\__,_|_| |_| |_|_|\__,_|_|\__|\__, | |
84 # | |___/ |
85 # +----------------------------------------------------------------------+
86 # | |
87 # '----------------------------------------------------------------------'
89 check_info['enviromux_sems.humidity'] = {
90 'inventory_function': inventory_enviromux_humidity,
91 'check_function': check_enviromux_humidity,
92 'service_description': 'Sensor %s',
93 'has_perfdata': True,
94 'includes': ["humidity.include", "enviromux.include"],
95 'group': "humidity",