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

Delete inv_wlc_ap_cdp_cache.py

parent 0b6a1792
No related branches found
No related tags found
No related merge requests found
#!/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.ap_cdp_cache:': {'title': _('Access Points CDP Cache'), 'render': render_inv_dicttable,
'keyorder': ['ap_name', 'ap_address', 'neighbour_name',
'neighbour_address', 'neighbour_interface',
'neighbour_platform', ],
'view': 'invwlcapcdpcache_of_host',
},
'.networking.wlan.controller.ap_cdp_cache:*.ap_name': {'title': _('AP name'), },
'.networking.wlan.controller.ap_cdp_cache:*.ap_address': {'title': _('AP address'), },
'.networking.wlan.controller.ap_cdp_cache:*.neighbour_name': {'title': _('Neighbour name'), },
'.networking.wlan.controller.ap_cdp_cache:*.neighbour_address': {'title': _('Neighbour address'), },
'.networking.wlan.controller.ap_cdp_cache:*.neighbour_interface': {'title': _('Neighbour interface'), },
'.networking.wlan.controller.ap_cdp_cache:*.neighbour_platform': {'title': _('Neighbour platform'), },
'.networking.wlan.controller.ap_cdp_cache:*.duplex': {'title': _('Duplex'), },
'.networking.wlan.controller.ap_cdp_cache:*.speed': {'title': _('Speed'), },
})
declare_invtable_view('invwlcapcdpcache', '.networking.wlan.controller.ap_cdp_cache:', _('WLC AP CDP cache'), _('WLC AP CDP Cache'))
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