forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathakcp_exp_water
29 lines (26 loc) · 1.22 KB
/
akcp_exp_water
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
28
29
#!/usr/bin/env python3
# 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.
# NOTE: Careful when replacing the *-import below with a more specific import. This can cause
# problems because it might remove variables needed for accessing discovery rulesets.
from cmk.base.check_legacy_includes.akcp_sensor import * # pylint: disable=wildcard-import,unused-wildcard-import
# Example for contents of info
# description state online
# ["Port 1 Wassermelder BE Lager", "2", "1"]
check_info["akcp_exp_water"] = {
"detect": all_of(
startswith(".1.3.6.1.2.1.1.2.0", ".1.3.6.1.4.1.3854.1"), exists(".1.3.6.1.4.1.3854.2.*")
),
"check_function": check_akcp_sensor_relay,
"inventory_function": inventory_akcp_sensor_no_params,
"service_description": "Water %s",
"snmp_info": (
".1.3.6.1.4.1.3854.2.3.9.1",
[
2, # SPAGENT-MIB::sensorWaterDescription
6, # SPAGENT-MIB::sensorWaterStatus
8, # SPAGENT-MIB::sensorWaterGoOffline
],
),
}