forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathakcp_sensor_humidity
27 lines (25 loc) · 1.05 KB
/
akcp_sensor_humidity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.
# Example for contents of info
# description percent status online
# ["Humdity1 Description", "0", "0", "2"]
check_info["akcp_sensor_humidity"] = {
"check_function": check_akcp_humidity,
"inventory_function": inventory_akcp_humidity,
"service_description": "Humidity %s",
"has_perfdata": True,
"snmp_scan_function": snmp_scan_akcp_sensor,
"snmp_info": (
".1.3.6.1.4.1.3854.1.2.2.1.17.1",
[
1, # SPAGENT-MIB::sensorProbeHumidityDescription
3, # SPAGENT-MIB::sensorProbeHumidityPercent
4, # SPAGENT-MIB::sensorProbeHumidityStatus
5, # SPAGENT-MIB::sensorProbeHumidityOnline
]),
"group": "humidity",
"includes": ["humidity.include", "akcp_sensor.include"],
}