Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / unitrends_backup
bloba0029b6d8a4c53f88020fd2af57f70a9b03fb6b1
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 # Header: Schedule Name, Application Name, Schedule Description, Failures
28 #<<<unitrends_backup:sep(124)>>>
29 #HEADER|DMZ-SR01|Hyper-V 2012|DMZ-HV01|0
30 #rodc2|18761|Incremental|Successful
31 #rodc2|18761|Incremental|Successful
32 #owncloud-test|18762|Incremental|Successful
35 def inventory_unitrends_backup(info):
36 inventory = []
37 for line in info:
38 if line[0] == "HEADER":
39 inventory.append((line[1], None))
40 return inventory
43 def check_unitrends_backup(item, _no_params, info):
44 found = False
45 details = []
46 for line in info:
47 if line[0] == "HEADER" and found:
48 # We are finish collection detail informatoinen
49 break
51 if found is True:
52 # Collection Backup deatils
53 app_type, bid, backup_type, status = line
54 details.append("Application Type: %s (%s), %s: %s" % \
55 ( app_type, bid, backup_type, status))
56 continue
58 if line[0] == "HEADER" and line[1] == item:
59 found = True
60 _head, _sched_name, app_name, sched_desc, failures = line
61 message = "%s Errors in last 24/h for Application %s (%s) " % \
62 ( failures, app_name, sched_desc )
64 if found is True:
65 message += "\n" + "\n".join(details)
66 if failures == '0':
67 return 0, message
68 return 2, message
69 return 3, "Schedule not found in Agent Output"
72 check_info["unitrends_backup"] = {
73 "check_function": check_unitrends_backup,
74 "inventory_function": inventory_unitrends_backup,
75 "service_description": "Schedule %s",