Module: check_mk
Branch: master
Commit: bce374c5541258307540c984d5bd828784e79096
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=bce374c5541258…
Author: Florian Kromer <fk(a)mathias-kettner.de>
Date: Fri Nov 30 13:11:46 2018 +0100
fix minor typo in perle checkmans
Change-Id: Ic869fd0db9066453686e53280e6324cc72ec8d64
---
checkman/perle_modules_cm1000 | 4 ++--
checkman/perle_modules_cm1110 | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/checkman/perle_modules_cm1000 b/checkman/perle_modules_cm1000
index bdc8d4a..e8ddd5e 100644
--- a/checkman/perle_modules_cm1000
+++ b/checkman/perle_modules_cm1000
@@ -1,11 +1,11 @@
-title: Perle Mediaconverter: CM 1110 modules states
+title: Perle Mediaconverter: CM 1000 modules states
agents: snmp
catalog: hw/app/perle
license: GPL
distribution: check_mk
description:
This check monitors the power state and fiber and copper LPRF and
- link status of CM 1110 modules of Perle Meadiconverter devices
+ link status of CM 1000 modules of Perle Meadiconverter devices
which support the PERLE-MCR-MGT MIB.
The check reports CRIT if no power to module. Otherwise it is OK.
diff --git a/checkman/perle_modules_cm1110 b/checkman/perle_modules_cm1110
index b6bea17..3812f0e 100644
--- a/checkman/perle_modules_cm1110
+++ b/checkman/perle_modules_cm1110
@@ -1,11 +1,11 @@
-title: Perle Mediaconverter: CM 1000 modules states
+title: Perle Mediaconverter: CM 1110 modules states
agents: snmp
catalog: hw/app/perle
license: GPL
distribution: check_mk
description:
This check monitors the power state and fiber and copper LPRF and
- link status of CM 1000 modules of Perle Meadiconverter devices
+ link status of CM 1110 modules of Perle Meadiconverter devices
which support the PERLE-MCR-MGT MIB.
The check reports CRIT if no power to module. Otherwise it is OK.
Module: check_mk
Branch: master
Commit: 8dbee015fa765f78cc794894fec0f318613edd37
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=8dbee015fa765f…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Tue Nov 27 16:51:42 2018 +0100
Refactored check parameters to new rule group registration
* Refactored all main groups to implement the new rulespec group
registration API. They all base on on the new RulespecGroup() class
* Besides these main groups the checks are members of sub groups. All
subgroups are now explicitly registered and based on the
RulespecSubGroup() class
* 3rd party checks that use either register_rule() or
register_check_parameters() may refer to non standard rulespec groups.
These are created automatically on demand for best compatibility.
Next step is to refactor all the register_rule() and
register_check_parameters() calls to a plugin registry.
Change-Id: Ib2145e5653d181bedbc66c83a881f135672c5c25
---
cmk/gui/plugins/wato/__init__.py | 13 +-
cmk/gui/plugins/wato/active_checks.py | 23 +-
cmk/gui/plugins/wato/check_mk_configuration.py | 255 ++++-
cmk/gui/plugins/wato/check_parameters.py | 941 ++++++++---------
cmk/gui/plugins/wato/datasource_programs.py | 33 +-
cmk/gui/plugins/wato/inventory.py | 26 +-
cmk/gui/plugins/wato/utils/__init__.py | 177 +++-
cmk/gui/wato/__init__.py | 20 +
cmk/gui/wato/mkeventd.py | 22 +-
cmk/gui/watolib.py | 78 +-
tests/unit/cmk/gui/test_watolib.py | 1295 +++++++++++++++++++++++-
11 files changed, 2346 insertions(+), 537 deletions(-)
Diff: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commitdiff;h=8dbee015fa…
Module: check_mk
Branch: master
Commit: 8d71b4089b89695f4ec4ef62e862d320409d2cf2
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=8d71b4089b8969…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Fri Nov 30 08:20:42 2018 +0100
Refactored main module registration to plugin registry
* The main module entries are now registered using the
cmk.gui.plugins.wato.utils.main_menu.main_module_registry.
* A main module entry is now represented by a class that implements
the MainModule() API
* The modules registered using register_modules() and the WatoModule()
class are still supported (at least for the next version) and are
migrated automatically to the new scheme
Change-Id: Id6802d4f7bf3b4fb6ff35308738b0ad66f09ddc6
Next: Refactor all shipped register_module() calls to the new mechanism.
---
cmk/gui/plugins/wato/__init__.py | 4 +-
cmk/gui/plugins/wato/background_job.py | 41 ++--
cmk/gui/plugins/wato/utils/__init__.py | 2 +
cmk/gui/plugins/wato/utils/main_menu.py | 117 +++++++++--
cmk/gui/wato/__init__.py | 3 +-
.../cmk/gui/plugins/wato/utils/test_main_menu.py | 229 +++++++++++++++++++++
6 files changed, 370 insertions(+), 26 deletions(-)
Diff: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commitdiff;h=8d71b4089b…