Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / wlc_clients.include
blob8ffe2d23e7ca718a96c26626acbcd5a458e26545
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2016 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 # parsed = {
28 # "Summary" : (13, ""),
29 # "NAME 1" : (5, INTERFACE),
30 # "NAME 2" : (8, INTERFACE),
31 # }
34 def inventory_wlc_clients(parsed):
35 return [(name, {}) for name in parsed]
38 def check_wlc_clients(item, params, parsed):
39 if isinstance(params, tuple):
40 params = {
41 "levels_lower": (params[1], params[0]),
42 "levels": (params[2], params[3]),
45 if item in parsed:
46 num_conns, interface = parsed[item]
47 state = 0
48 infotext = "%d connections" % num_conns
49 perfdata = [("connections", num_conns)]
50 if interface:
51 infotext += " (%s)" % interface
52 if params:
53 if params.get("levels", None):
54 warn, crit = params["levels"]
55 levelstext = "at %d/%d" % (warn, crit)
56 if num_conns >= crit:
57 state = 2
58 elif num_conns >= warn:
59 state = 1
61 perfdata = [("connections", num_conns, warn, crit)]
63 elif params.get("levels_lower", None):
64 warn_low, crit_low = params["levels"]
65 levelstext = "below %d/%d" % (warn_low, crit_low)
66 if num_conns < crit_low:
67 state = 2
68 elif num_conns < warn_low:
69 state = 1
71 if state > 0:
72 infotext += " (warn/crit %s)" % levelstext
74 return state, infotext, perfdata