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

Delete inv_cisco_wlc_ap_cdp_cache.py

parent 2430c336
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from cmk.gui.plugins.views import (
inventory_displayhints, )
from cmk.gui.i18n import _
from cmk.gui.plugins.views.inventory import declare_invtable_view
inventory_displayhints.update({
'.networking.wlan.controller.ap_cdp_cache:': {'title': _('Access Points CDP Cache'),
'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