Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / citrix_serverload
blob4d0e2c902d5afc07e6e4c0df74e06d0e10155da6
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 #<<<citrix_serverload>>>
28 #100
30 citrix_serverload_default_levels = (8500, 9500)
33 def inventory_citrix_serverload(info):
34 return [(None, 'citrix_serverload_default_levels')]
37 def check_citrix_serverload(_no_item, params, info):
38 try:
39 load = int(info[0][0])
40 except:
41 yield 3, "Load information not found"
42 return
44 warn, crit = params
45 state = 0
46 if load == 20000:
47 yield 1, "License error"
48 load = 10000
49 if load >= crit:
50 state = 2
51 elif load >= warn:
52 state = 1
53 yield state, "Current Citrix Load is: %.2f%%" % (load / 100.0), [('perf', load, warn, crit)]
56 check_info["citrix_serverload"] = {
57 "group": "citrix_load",
58 "check_function": check_citrix_serverload,
59 "inventory_function": inventory_citrix_serverload,
60 "service_description": "Citrix Serverload",
61 "has_perfdata": True,