forked from HeinleinSupport/checkMK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacme_realm
56 lines (49 loc) · 2.2 KB
/
acme_realm
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
45
46
47
48
49
50
51
52
53
54
55
56
#!/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.
# 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.acme import * # pylint: disable=wildcard-import,unused-wildcard-import
def inventory_acme_realm(info):
return [
(name, {}) for name, _inbound, _outbound, _total_inbound, _total_outbound, _state in info
]
def check_acme_realm(item, params, info):
map_states = {
"3": (0, "in service"),
"4": (1, "contraints violation"),
"7": (2, "call load reduction"),
}
for name, inbound, outbound, total_inbound, total_outbound, state in info:
if item == name:
dev_state, dev_state_readable = map_states[state]
return (
dev_state,
"Status: %s, Inbound: %s/%s, Outbound: %s/%s"
% (dev_state_readable, inbound, total_inbound, outbound, total_outbound),
[
("inbound", int(inbound), None, None, 0, int(total_inbound)),
("outbound", int(outbound), None, None, 0, int(total_outbound)),
],
)
return None
check_info["acme_realm"] = {
"inventory_function": inventory_acme_realm,
"check_function": check_acme_realm,
"service_description": "Realm %s",
"has_perfdata": True,
"snmp_info": (
".1.3.6.1.4.1.9148.3.2.1.2.4.1",
[
"2", # APSYSMGMT-MIB::apSigRealmStatsRealmName
"3", # APSYSMGMT-MIB::apSigRealmStatsCurrentActiveSessionsInbound
"5", # APSYSMGMT-MIB::apSigRealmStatsCurrentActiveSessionsOutbound
"7", # APSYSMGMT-MIB::apSigRealmStatsTotalSessionsInbound
"11", # APSYSMGMT-MIB::apSigRealmStatsTotalSessionsOutbound
"30", # APSYSMGMT-MIB::apSigRealmStatsRealmStatus
],
),
"snmp_scan_function": scan_acme,
}