forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathakcp_exp_temp
44 lines (39 loc) · 2.19 KB
/
akcp_exp_temp
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/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
# 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.temperature import * # pylint: disable=wildcard-import,unused-wildcard-import
# Example for contents of info
# description degree unit status low_crit low_warn high_warn high_crit degreeraw online
# ["Port 8 Temperatur CL Lager", "20", "C", "5", "10", "20", "30", "40", "0", 1]
factory_settings["akcp_temp_default_levels"] = AKCP_TEMP_CHECK_DEFAULT_PARAMETERS
check_info["akcp_exp_temp"] = {
"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_temp,
"inventory_function": inventory_akcp_sensor_temp,
"service_description": "Temperature %s",
"default_levels_variable": "akcp_temp_default_levels",
"snmp_info": (
".1.3.6.1.4.1.3854.2.3.2.1",
[
2, # SPAGENT-MIB::sensorTemperatureDescription
4, # SPAGENT-MIB::sensorTemperatureDegree
5, # SPAGENT-MIB::sensorTemperatureUnit
6, # SPAGENT-MIB::sensorTemperatureStatus
9, # SPAGENT-MIB::sensorTemperatureLowCritical
10, # SPAGENT-MIB::sensorTemperatureLowWarning
11, # SPAGENT-MIB::sensorTemperatureHighWarning
12, # SPAGENT-MIB::sensorTemperatureHighCritical
19, # SPAGENT-MIB::sensorTemperatureRaw
8, # SPAGENT-MIB::sensorTemperatureGoOffline
],
),
"group": "temperature",
}