Refactoring: Changed all check parameters starting with an 'o' to the new rulespec...
[check_mk.git] / checks / emc_datadomain_fs
blob28e4d2c3d67f2500f4e896694d7798de0cc92439
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 inventory_emc_datadomain_fs(info):
29 mplist = []
30 for line in info:
31 if line[1] in inventory_df_exclude_mountpoints:
32 continue
33 mplist.append((line[1], None))
34 return mplist
37 def check_emc_datadomain_fs(item, params, info):
38 fslist = []
39 for line in info:
40 if item == line[1] or "patterns" in params:
41 size_mb = float(line[2]) * 1024.0
42 avail_mb = float(line[4]) * 1024.0
43 fslist.append((item, size_mb, avail_mb, 0))
44 return df_check_filesystem_list(item, params, fslist)
47 check_info["emc_datadomain_fs"] = {
48 "check_function": check_emc_datadomain_fs,
49 "inventory_function": inventory_emc_datadomain_fs,
50 "service_description": "DD-Filesystem %s",
51 "includes": ["size_trend.include", "df.include"],
52 "group": "filesystem",
53 "default_levels_variable": "filesystem_default_levels",
54 "has_perfdata": True,
55 "snmp_scan_function": lambda oid: oid(".1.3.6.1.2.1.1.1.0").startswith("Data Domain OS"),
56 "snmp_info": (
57 ".1.3.6.1.4.1.19746.1.3.2.1.1",
59 1, # fileSystemResourceIndex
60 3, # fileSystemResourceName
61 4, # fileSystemSpaceSize
62 5, # fileSystemSpaceUsed
63 6, # fileSystemSpaceAvail
64 7, # fileSystemPercentUsed
65 8, # fileSystemSpaceCleanable