Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / citrix_licenses
blob3a91a6b8253d5ac1c970ec3960481aa7499d49b3
1 #!/usr/bin/python
2 # -*- encoding: utf-8; py-indent-offset: 4 -*-
3 # +------------------------------------------------------------------+
4 # | ____ _ _ __ __ _ __ |
5 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
6 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
7 # | | |___| | | | __/ (__| < | | | | . \ |
8 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
9 # | |
10 # | Copyright Mathias Kettner 2014 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 # Example output from plugin:
28 # <<<citrix_licenses>>>
29 # PVS_STD_CCS 80 0
30 # PVS_STD_CCS 22 0
31 # CEHV_ENT_CCS 22 0
32 # MPS_ENT_CCU 2160 1636
33 # MPS_ENT_CCU 22 22
34 # XDT_ENT_UD 22 18
35 # XDS_ENT_CCS 22 0
36 # PVSD_STD_CCS 42 0
39 def inventory_citrix_licenses(info):
40 license_types = set([])
41 for license_type, _have, _used in info:
42 license_types.add(license_type)
43 return [(lt, None) for lt in license_types]
46 def check_citrix_licenses(item, params, info):
47 have = 0
48 used = 0
49 for license_type, h, u in info:
50 if item == license_type:
51 have += int(h)
52 used += int(u)
53 if not have:
54 return 3, "No licenses of that type found"
56 return license_check_levels(have, used, params)
59 check_info["citrix_licenses"] = {
60 'check_function': check_citrix_licenses,
61 'inventory_function': inventory_citrix_licenses,
62 'service_description': 'Citrix Licenses %s',
63 'has_perfdata': True,
64 'group': "citrix_licenses",
65 'includes': ["license.include"]