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

Delete inv_ipv4_addresses.py

parent 635292de
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# License: GNU General Public License v2
#
# Author: thl-cmk[at]outlook[dot]com
# URL : https://thl-cmk.hopto.org
# Date : 2023-12-27
# File : inv_ip_addresses.py
from cmk.gui.views.inventory.registry import inventory_displayhints
from cmk.gui.plugins.visuals.inventory import FilterInvtableIDRange
from cmk.gui.i18n import _l
inventory_displayhints.update({
'.networking.addresses:': {
'title': _l('IP Addresses'),
'keyorder': [
'address',
'device',
'type',
'cidr',
'netmask',
'network',
'broadcast',
],
'view': 'invipaddresses_of_host',
},
'.networking.addresses:*.address': {'title': _l('Address')},
'.networking.addresses:*.broadcast': {'title': _l('Broadcast')},
'.networking.addresses:*.cidr': {'title': _l('CIDR'), 'filter': FilterInvtableIDRange},
'.networking.addresses:*.device': {'title': _l('Device')},
'.networking.addresses:*.netmask': {'title': _l('Netmask')},
'.networking.addresses:*.network': {'title': _l('Network')},
'.networking.addresses:*.type': {'title': _l('Address Type'), 'paint': 'ip_address_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