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 30d659bd authored by thl-cmk's avatar thl-cmk :flag_na:
Browse files

update project

parent 8110c277
No related branches found
No related tags found
No related merge requests found
No preview for this file type
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
try:
from cmk.gui.plugins.views.inventory import (
declare_invtable_view,
render_inv_dicttable,
)
except:
pass
inventory_displayhints.update({
'.networking.wlan.controller.accesspoints_lwap:': {'title' : _('Access Points (CISCO-LWAPP-AP-MIB)'),
'keyorder': ['name', 'if_mac_address', ],
# 'view' : 'invwlcapslwap_of_host',
'render': render_inv_dicttable,
'keyorder': ['name', 'if_mac_address', ],
'view' : 'invwlcapslwap_of_host',
},
'.networking.wlan.controller.accesspoints_lwap:*.name' : {'title': _('Name')},
'.networking.wlan.controller.accesspoints_lwap:*.if_mac_address' : {'title': _('MAC Address')},
......@@ -61,4 +70,4 @@ inventory_displayhints.update({
'.networking.wlan.controller.accesspoints_lwap:*.ble_fw_download_status' : {'title': _('Ble FW downaload status')},
})
# declare_invtable_view('invwlcapslwap', '.networking.wlan.controller.accesspoints_lwap:', _('WLC APs (LWAPP-MIB)'), _('WLC APs (LWAPP-AP-MIB)'))
declare_invtable_view('invwlcapslwap', '.networking.wlan.controller.accesspoints_lwap:', _('WLC APs (LWAPP-MIB)'), _('WLC APs (LWAPP-AP-MIB)'))
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