Cleanup config.nodes_of
[check_mk.git] / checks / fast_lta_silent_cubes
blob6dfb6fb2489b37c4ad75efb97e19fb34d1cfd36e
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_fast_lta_silent_cubes_status(info):
29 if len(info) > 0 and len(info[0]) > 1:
30 return [("Total", {})]
31 return []
34 def check_fast_lta_silent_cubes_status(item, params, info):
35 fslist = []
36 for total, used in info:
37 size_mb = int(total) / 1048576.0
38 avail_mb = (int(total) - int(used)) / 1048576.0
39 fslist.append((item, size_mb, avail_mb, 0))
41 return df_check_filesystem_list(item, params, fslist)
44 check_info["fast_lta_silent_cubes.capacity"] = {
45 "check_function": check_fast_lta_silent_cubes_status,
46 "inventory_function": inventory_fast_lta_silent_cubes_status,
47 "service_description": "Fast LTA SC Capacity %s",
48 "has_perfdata": True,
49 "group": "filesystem",
50 "includes": ["size_trend.include", "df.include"],
51 "snmp_info": (
52 ".1.3.6.1.4.1.27417.3",
54 2, # scTotalCapacity
56 ] # scTotalUsedCapacity
58 "snmp_scan_function": lambda oid: oid(".1.3.6.1.2.1.1.2.0").startswith(
59 ".1.3.6.1.4.1.8072.3.2.10"),