2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
10 # | Copyright Mathias Kettner 2015 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 hwg_humidity_defaultlevels
= (0, 0, 60, 70)
30 def inventory_hwg_humidity(info
):
31 return [(line
[0], "hwg_humidity_defaultlevels")
33 if int(line
[2]) != 0 and line
[4] in ["4"]]
36 def check_hwg_humidity(item
, params
, info
):
40 # "2" : "Out Of Range Low",
41 # "3" : "Out Of Range High",
46 # Nomenclature in this check: sensorstatus is what the device sends, status is what the check returns.
47 for index
, descr
, _sensorstatus
, current
, unit
in info
:
52 humidity
= float(current
)
53 status
, infotext
, perfdata
= check_humidity(humidity
, params
)
55 infotext
+= " (%s)" % descr
56 return status
, infotext
, perfdata
59 check_info
['hwg_humidity'] = {
60 "check_function": check_hwg_humidity
,
61 "inventory_function": inventory_hwg_humidity
,
62 "service_description": "Humidity %s",
65 ".1.3.6.1.4.1.21796.4.1.3",
66 [ # sensors index (1-2)
70 # unit state: 0=Invalid, 1=Normal, 2=OutOfRangeLo, 3=OutOfRangeHi, 4=AlarmLo, 5=AlarmHi
72 # current value string
74 # sensor unit integer 0=unknown, 1=°C, 2=°F, 3=°K, 4=%
77 "snmp_scan_function": lambda oid
: "hwg" in oid(".1.3.6.1.2.1.1.1.0").lower(),
79 "includes": ["humidity.include"],