Custom Service Notes über GUI befüllen

Du kannst Dir ein plugin basteln. Unter ./share/check_mk/web/plugins/icons/ kannst Du ein Python Script anlegen.

Raw sketch:

import urllib

def paint_link(what, row, tags, host_custom_vars ):
   BASE_URL="https://irgendwas"
   VAR_URL="irgendwas=etwas&wasanderes=keineAhnung"
    return 'khelpcenter', _('Open pilot instructions'), ('%s%s' % (BASE_URL, VAR_URL) , '_blank')

multisite_icons_and_actions['object_link'] = {
    'paint':    paint_link,
    'toplevel': True,
}

Hoffe das hilft