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

Delete inv_epsm.py

parent 07a40166
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({
'.hardware.devices:': {'title': _('Devices'),
'keyorder': ['id', 'name', 'type', 'version', 'detected', 'activated', ],
'view': 'invdevices_of_host',
},
'.hardware.devices:*.id': {'title': _('ID'), },
'.hardware.devices:*.name': {'title': _('Name')},
'.hardware.devices:*.type': {'title': _('Type'), },
'.hardware.devices:*.version': {'title': _('Version')},
'.hardware.devices:*.detected': {'title': _('Detected'), },
'.hardware.devices:*.activated': {'title': _('Activated'), },
})
declare_invtable_view('invdevices', '.hardware.devices:', _('Devices'), _('Devices'))
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