GUI CSS: Removed snapin styles from py modules and added a _snapins.scss for the...
[check_mk.git] / checks / license.include
blobc4906780c6fdb7578ff6db4a96521d103330069c
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.
28 def license_check_levels(have, used, params):
29 if params is None:
30 warn = have
31 crit = have
32 elif params is False:
33 warn = None
34 crit = None
35 elif isinstance(params[0], int):
36 warn = max(0, have - params[0])
37 crit = max(0, have - params[1])
38 else:
39 warn = have * (1 - params[0] / 100)
40 crit = have * (1 - params[1] / 100)
42 perfdata = [("licenses", used, warn, crit, 0, have)]
43 if used <= have:
44 infotext = "used %d out of %d licenses" % (used, have)
45 else:
46 infotext = "used %d licenses, but you have only %d" % (used, have)
48 if crit is not None and used >= crit:
49 status = 2
50 elif warn is not None and used >= warn:
51 status = 1
52 else:
53 status = 0
55 if status:
56 infotext += " (warn/crit at %d/%d)" % (warn, crit)
58 return status, infotext, perfdata