Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / ups_capacity.include
blob20dbbc13ad6ad0f329a3242500896e1f3d9e3f7e
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 check_ups_capacity(item, params, info):
29 # To support inventories with the old version
30 if isinstance(params, tuple): # old format with 2 params in tuple
31 warn, crit = params
32 cap_warn, cap_crit = (95, 90)
33 elif isinstance(params, dict): # new dict format
34 warn, crit = params.get('battime', (0, 0))
35 cap_warn, cap_crit = params.get('capacity', (95, 90))
36 else:
37 warn, crit = (0, 0)
38 cap_warn, cap_crit = (95, 90)
40 time_on_bat, minutes_left, percent_fuel = info[0]
42 # Check time left on battery
43 if minutes_left:
44 minutes_left = int(minutes_left)
45 state = 0
46 infotext = "%d min left on battery" % minutes_left
48 if minutes_left <= crit:
49 state = 2
50 elif minutes_left < warn:
51 state = 1
53 if state:
54 infotext += " (warn/crit below %d min/%d min)" % (warn, crit)
56 yield state, infotext, [('capacity', minutes_left, warn, crit)]
58 # Check percentual capacity
59 if percent_fuel:
60 percent_fuel = int(percent_fuel)
61 infotext = "capacity: %d%%" % percent_fuel
62 state = 0
64 if percent_fuel <= cap_crit:
65 state = 2
66 elif percent_fuel < cap_warn:
67 state = 1
69 if state:
70 infotext += " (warn/crit below %d%%/%d%%)" % (cap_warn, cap_crit)
72 yield state, infotext, [('percent', percent_fuel, cap_warn, cap_crit)]
74 # Output time on battery
75 if time_on_bat and int(time_on_bat) > 0:
76 yield 0, "On battery for %d min" % int(time_on_bat)