Refactoring: Moved check parameters from unsorted.py to dedicated modules (CMK-1393)
[check_mk.git] / checks / fortigate_sslvpn
blob13f84bbdf141225bbbc01c477e39684a61b95ccd
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2015 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.
28 def parse_fortigate_sslvpn(info):
29 return [x + y for x, y in zip(info[0], info[1])]
32 def inventory_fortigate_sslvpn(info):
33 for name, _state, _users, _web_sessions, _tunnels, _tunnels_max in info:
34 yield name, None
37 def check_fortigate_sslvpn(item, _no_params, info):
38 fn_bool_state = {"1": "disabled", "2": "enabled"}
39 for name, state, users, web_sessions, tunnels, tunnels_max in info:
40 if name == item:
41 infotext = "%s - users %s, web sessions %s, tunnels %s" %\
42 (fn_bool_state[state], users, web_sessions, tunnels)
44 perfdata = [("active_vpn_users", users), ("active_vpn_websessions", web_sessions),
45 ("active_vpn_tunnels", tunnels, '', '', 0, tunnels_max)]
46 return 0, infotext, perfdata
49 check_info["fortigate_sslvpn"] = {
50 "inventory_function": inventory_fortigate_sslvpn,
51 "check_function": check_fortigate_sslvpn,
52 "parse_function": parse_fortigate_sslvpn,
53 "service_description": "VPN SSL %s",
54 "has_perfdata": True,
55 "snmp_scan_function": lambda oid: ".1.3.6.1.4.1.12356.101.1" in oid(".1.3.6.1.2.1.1.2.0"),
56 "snmp_info": [
57 (".1.3.6.1.4.1.12356.101.3.2.1.1", [2]),
59 ".1.3.6.1.4.1.12356.101.12.2.3.1",
61 1, # fgVpnSslState
62 2, # fgVpnSslStatsLoginUsers
63 4, # fgVpnSslStatsActiveWebSessions
64 6, # fgVpnSslStatsActiveTunnels
65 7, # fgVpnSslStatsMaxTunnels
66 ]),