From 434385b9b5e79cbfea5a4a0fff4ce1d4156ec9ac Mon Sep 17 00:00:00 2001 From: Constey Date: Wed, 15 May 2024 12:51:14 +0200 Subject: [PATCH] Update citrix_state.py - added vmtoolsstate config Added possibility to configure vmtoolsstate --- cmk/gui/plugins/wato/check_parameters/citrix_state.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/cmk/gui/plugins/wato/check_parameters/citrix_state.py b/cmk/gui/plugins/wato/check_parameters/citrix_state.py index 996596210b9..d002944326e 100644 --- a/cmk/gui/plugins/wato/check_parameters/citrix_state.py +++ b/cmk/gui/plugins/wato/check_parameters/citrix_state.py @@ -27,6 +27,17 @@ def _parameter_valuespec_citrix_state(): ], optional_keys=False, ), + "vmtoolsstate", + Dictionary( + title=_("Interpretation of vmtoolsstate States"), + elements=[ + ("NotPresent", MonitoringState(title=_("NotPresent"), default_value=2)), + ("Unknown", MonitoringState(title=_("Unknown"), default_value=3)), + ("NotStarted", MonitoringState(title=_("NotStarted"), default_value=2)), + ("Running", MonitoringState(title=_("Running"), default_value=1)), + ], + optional_keys=False, + ), ) ], )