-
Change Request
-
Resolution: Unresolved
-
Minor
-
None
-
4.2.3
When you have a large number of hosts and triggers, in Monitoring Overview, it's difficult to know which trigger you are clicking. It would be much easier if the host name would appear on top of "TRIGGER" in the popup dialog. See attached pictures.
I implemented it and here is the diff to implement (from Zabbix 4.2.3):
File app/controllers/CControllerMenuPopup.php:
546c546,547
< : HISTORY_VALUES
—
> : HISTORY_VALUES,
> 'hostname' => $item['hostname']
File js/menupopup.js:
658c658
< label: t('S_TRIGGER'),
—
> label: t('S_TRIGGER') + ' - ' + options.items[0].params.hostname,