Event Console increase text input size

It would be great to have the text input size at Event Console increased, once working with SNMP OID’s these become not completely displayed, so for each you have to click and use arrow keys.

Check Screenshot

A fast fix would be the modification of the file ~site/share/check_mk/web/plugins/wato/mkeventd.py around line 737 and add the size for this field:

( "match_application",
  RegExpUnicode(
      title = _("Match syslog application (tag)"),
      help = _("Regular expression for matching the syslog tag (case insenstive)"),
      mode = RegExp.infix,
      case_sensitive = False,
      size = 64,
  )
1 Like

Perfect! Works fine. Worth to mention: The site needs to be restarted.

Any chance getting this at the final product?