Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
Snippets Groups Projects
Commit 8d6c68f6 authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

Delete cisco_wlc_mem.py

parent 6a20e93b
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2018-03-18
#
# metrics plugin for cisco_wlc_mem
from cmk.gui.i18n import _
from cmk.gui.plugins.metrics import (
metric_info,
graph_info,
perfometer_info
)
metric_info['cisco_wlc_mem_utilization'] = {
'title': _('Memory utilization'),
'unit': '%',
'color': '26/a',
}
graph_info['cisco_wlc_mem.cisco_wlc_mem_utilization'] = {
'title': _('Memory utilization'),
'metrics': [
('cisco_wlc_mem_utilization', 'area'),
],
'range': (0, 100),
'scalars': [
('cisco_wlc_mem_utilization:crit', _('crit level')),
('cisco_wlc_mem_utilization:warn', _('warn level')),
],
}
perfometer_info.append({
'type': 'linear',
'segments': ['cisco_wlc_mem_utilization',],
'total': 100.0,
})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment