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

update project

parent 1d8dbead
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -5,6 +5,7 @@ import cmk.gui.utils
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.clients:': {'title': _('WLC clients'),
......@@ -14,7 +15,6 @@ inventory_displayhints.update({
],
'view': 'invwlcclients_of_host'},
'.networking.wlan.controller.clients:*.index': {'title': _('Index'), },
'.networking.wlan.controller.clients:*.macaddress': {'title': _('MAC Addresse'), },
'.networking.wlan.controller.clients:*.status': {'title': _('Status'), },
......@@ -61,11 +61,6 @@ inventory_displayhints.update({
'.networking.wlan.controller.clients:*.aaarole': {'title': _('AAA role'), },
'.networking.wlan.controller.clients:*.devicetype': {'title': _('Device type'), },
'.networking.wlan.controller.clients:*.userauthtype': {'title': _('User auth type'), },
# '.networking.wlan.controller.clients:*.certificate_type' : { 'title' : _('Certificate type'), 'short' : _('Cert type'), 'filter' : visuals.FilterInvtableWLCCertType, 'paint' : 'wlc_cert_type' },
})
from cmk.gui.plugins.views.inventory import declare_invtable_view
declare_invtable_view('invwlcclients', '.networking.wlan.controller.clients:', _('WLC clients'), _('WLC clients'))
......@@ -16,7 +16,7 @@ from cmk.gui.plugins.wato.inventory import (
RulespecGroupInventory,
)
removecolumns = [
_removecolumns = [
('ieee80211ucapable', '802.11u capable'),
('aaaoverrideaclapplied', 'AAA overide ACL applied'),
('aaaoverrideaclname', 'AAA overide ACL name'),
......@@ -24,19 +24,15 @@ removecolumns = [
('accessvlan', 'Access VLAN'),
('aclapplied', 'ACL applied'),
('aclname', 'ACL name'),
# ('apmacaddress' ,'AP MAC address'),
('aproammacaddress', 'AP roam MAC address'),
('associationmode', 'Association mode'),
('authentication', 'Authentication'),
('authmode', 'Auth mode'),
# ('channel' ,'Channel'),
('currenttxrateset', 'Current TX rate (MBit/s)'),
('datarateset', 'Data rate set'),
('dataswitching', 'Data switching'),
# ('devicetype' ,'Device type'),
('hreapapauth', 'HREAP AP auth'),
('iftype', 'Interface type'),
# ('ipaddress' ,'IP address'),
('ipv6aclapplied', 'IPv6 ACL applied'),
('ipv6aclname', 'IPv6 ACL name'),
('logintime', 'Login time'),
......@@ -47,18 +43,13 @@ removecolumns = [
('policyname', 'Policy name'),
('posturestate', 'Posture state'),
('powersavemode', 'Power save mode'),
# ('protocol' ,'Protocol'),
('quarantinevlan', 'Quarantine VLAN'),
('reasoncode', 'Reason code'),
('redirecturl', 'Redirect URL'),
('securitytagid', 'Security tag ID'),
('sessionid', 'Session ID'),
# ('ssid' ,'SSID'),
# ('status' ,'Status'),
('typekts', 'NEC KTS SIP client'),
# ('uptime' ,'Uptime'),
('userauthtype', 'User auth type'),
# ('username' ,'Username'),
('wgbmacaddress', 'WGB MAC address'),
('wgbstatus', 'WGB status'),
('wlanprofilename', 'WLAN profile name'),
......@@ -76,7 +67,7 @@ def _valuespec_inv_cisco_wlc_clients():
ListChoice(
title=_('list of columns to remove'),
help=_('information to remove from inventory'),
choices=removecolumns,
choices=_removecolumns,
default_value=[
],
)),
......
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