Checmk 2.0.0p5 - Fehler bei "Parameters for this service"

Der Fehler ist auch “korrekt” so. Warum ist das eine “ListOf → Dictionary”?
Eine “ListOf” einzelnen Elementen würde doch reichen.
Das Problem ist bei dir bestehen die Parameter aus zwei Dictionaries welche identisch sind bis auf den Inhalt, da hat das System bei der Anzeige ein Problem.

Würde hier sowas machen wie in dem Beispiel hier.

def _parameter_valuespec_cpu_utilization_cluster():
    return ListOf(
        Tuple(elements=[
            Integer(title=_("Equal or more than"), unit=_("nodes")),
            Tuple(
                elements=[
                    Percentage(title=_("Warning at a utilization of"), default_value=90.0),
                    Percentage(title=_("Critical at a utilization of"), default_value=95.0)
                ],
                title=_("Alert on too high CPU utilization"),
            )
        ]),
        help=_(
            "Configure levels for averaged CPU utilization depending on number of cluster nodes. "
            "The CPU utilization sums up the percentages of CPU time that is used "
            "for user processes and kernel routines over all available cores within "
            "the last check interval. The possible range is from 0% to 100%"),
        title=_("Memory Usage"),
        add_label=_("Add limits"),
    )