Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / enviromux_sems_external
blob99ffe351fac089b6563653d2794d0844bbac6893
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_external'] = {
28 'parse_function': parse_enviromux_sems_external,
29 'inventory_function': inventory_enviromux_temperature,
30 'check_function': check_enviromux_temperature,
31 'service_description': 'Sensor External %s',
32 'snmp_info': (
33 '.1.3.6.1.4.1.3699.1.1.2.1.5.1.1',
35 "1", # extSensorIndex
36 "2", # extSensorType
37 "3", # extSensorDescription
38 "4", # extSensorConnector
39 "5", # extSensorGroupNB
40 "6", # extSensorGroup
41 "7", # extSensorValue
42 "8", # extSensorUnit
43 "9", # extSensorUnitName
44 "10", # extSensorStatus
45 "11", # extSensorMinThreshold
46 "12", # extSensorMaxThreshold
47 # These appear to only return bogus values
48 #"12", # extSensorMinWarnThreshold
49 #"13", # extSensorMaxWarnThreshold
50 ]),
51 'includes': ["temperature.include", "enviromux.include"],
52 'has_perfdata': True,
53 'snmp_scan_function': enviromux_sems_scan_function,
54 'group': "temperature",
58 # .--Voltage-------------------------------------------------------------.
59 # | __ __ _ _ |
60 # | \ \ / /__ | | |_ __ _ __ _ ___ |
61 # | \ \ / / _ \| | __/ _` |/ _` |/ _ \ |
62 # | \ V / (_) | | || (_| | (_| | __/ |
63 # | \_/ \___/|_|\__\__,_|\__, |\___| |
64 # | |___/ |
65 # +----------------------------------------------------------------------+
66 # | |
67 # '----------------------------------------------------------------------'
69 check_info['enviromux_sems_external.voltage'] = {
70 'inventory_function': inventory_enviromux_voltage,
71 'check_function': check_enviromux_voltage,
72 'service_description': 'Sensor External %s',
73 'has_perfdata': True,
74 'group': "voltage",
75 'default_levels_variable': "enviromux_default_levels",
76 'includes': ["enviromux.include"],
79 # .--Humidity------------------------------------------------------------.
80 # | _ _ _ _ _ _ |
81 # | | | | |_ _ _ __ ___ (_) __| (_) |_ _ _ |
82 # | | |_| | | | | '_ ` _ \| |/ _` | | __| | | | |
83 # | | _ | |_| | | | | | | | (_| | | |_| |_| | |
84 # | |_| |_|\__,_|_| |_| |_|_|\__,_|_|\__|\__, | |
85 # | |___/ |
86 # +----------------------------------------------------------------------+
87 # | |
88 # '----------------------------------------------------------------------'
90 check_info['enviromux_sems_external.humidity'] = {
91 'inventory_function': inventory_enviromux_humidity,
92 'check_function': check_enviromux_humidity,
93 'service_description': 'Sensor External %s',
94 'has_perfdata': True,
95 'includes': ["humidity.include", "enviromux.include"],
96 'group': "humidity",