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

update project

parent 5bf3fd5b
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
#
# 2023-01-14: fixed missing import for declare_invtable_view
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2016-04-16
# 2023-01-14: fixed missing import for declare_invtable_view
# 2023-06-14: removed declare_invtable_view from view definition on cmk 2.2 (see werk 15493)
# changed inventory_displayhints import (see werk 15493)
from cmk.gui.plugins.views.utils import (
inventory_displayhints,
)
from cmk.gui.plugins.views.inventory import (
declare_invtable_view,
)
from cmk.gui.i18n import _
from cmk.gui.views.inventory.registry import inventory_displayhints
inventory_displayhints.update({
'.networking.lldp_cache:': {'title': _('LLDP Cache'),
......@@ -27,5 +30,3 @@ inventory_displayhints.update({
'.networking.lldp_cache:*.capabilities_map_supported': {'title': _('Capabilities map supported'), },
'.networking.lldp_cache:*.cache_capabilities': {'title': _('Cache Capabilities'), },
})
declare_invtable_view('invlldpcache', '.networking.lldp_cache:', _('LLDP cache'), _('LLDP Cache'))
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#!/usr/bin/python
# -*- encoding: utf-8; py-indent-offset: 4 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2016-04-16
# 2023-06-14: moved wato file to check_parameters sub directory
from cmk.gui.i18n import _
......
No preview for this file type
No preview for this file type
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