Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / netapp_api_snapvault
blob75f684d57827ce177bf04b0e22a1b2bcd699053d
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 # <<<netapp_api_vf_snapvault:sep(9)>>>
28 # snapvault /vol/ipb_datap/ status idle state snapvaulted lag-time 53812 source-system 172.31.12.15
29 # snapvault /vol/ipb_datas/ status idle state snapvaulted lag-time 53812 source-system 172.31.12.15
30 # snapvault /vol/ipb_user/ status idle state snapvaulted lag-time 97007 source-system 172.31.12.15
31 # snapvault /vol/ipb_vol0/ status idle state snapvaulted lag-time 97011 source-system 172.31.12.15
34 def inventory_netapp_api_snapvault(parsed):
35 for snapvault, values in parsed.items():
36 if "lag-time" in values:
37 yield snapvault, {}
40 @get_parsed_item_data
41 def check_netapp_api_snapvault(item, params, snapvault):
42 for what in ["source-system", "destination-system", "policy", "status", "state"]:
43 if what in snapvault:
44 yield 0, "%s: %s" % (what.title(), snapvault[what])
46 lag_time = snapvault.get("lag-time")
47 if not lag_time:
48 return
50 lag_time = int(lag_time)
51 state = 0
52 if params:
53 levels = None
54 snapvault_policy = snapvault.get("policy")
56 for name, policy_levels in params.get("policy_lag_time", []):
57 if name == snapvault_policy:
58 levels = policy_levels
59 break
61 if not levels and params.get("lag_time"):
62 levels = params["lag_time"]
64 if levels:
65 warn, crit = levels
66 if lag_time >= crit:
67 state = 2
68 elif lag_time >= warn:
69 state = 1
71 yield state, "Lag-Time: %s" % get_age_human_readable(lag_time)
74 def netapp_api_snapvault_item(name):
75 return name.replace("$", "_")
78 check_info["netapp_api_snapvault"] = {
79 'parse_function': lambda x: netapp_api_parse_lines(x, item_func=netapp_api_snapvault_item),
80 'check_function': check_netapp_api_snapvault,
81 'inventory_function': inventory_netapp_api_snapvault,
82 'group': "snapvault",
83 'service_description': 'Snapvault %s',
84 'includes': ["netapp_api.include"]