Plugin template?

For configuration in WATO you have to develop other files on the central monitoring server in python.

Example for ~site/local/share/check_mk/web/plugins/wato/<your_filename>. It’s working in 1.5 and is not tested on 1.6. I am not sure if the reference changed for this functions.

register_check_parameters(
        subgroup_storage,
        'multipath_broken',
        _('Linux multipath broken paths'),
        Dictionary(
                elements = [
            ('broken_levels',
                Tuple(
                    title = _("Set levels on broken paths"),
                    elements = [
                                    Integer(title = _("Warning at"), default_value = 1),
                                    Integer(title = _("Critical at"), default_value = 2),
                            ]
                    ),
            ),
            ('sumpaths',
                Integer(title = _("Sum Paths"))
            ),
            ('state_if_new',
                MonitoringState(
                    default_value = 1,
                    title = _("State in case of new paths found"),
                )
            )
       ]
   ),
   None,
   match_type = 'dict',
)