Hi,
We're looking into replacing an in-house developed monitoring tool with Zabbix (or Nagios). On our current monitoring, we have a bunch of built-in tools, like browsing a TFTP directory, switches and routers configs, find the switch a host is conencted to, and a lot more.
So, what I'm trying to do is customize the menus, and add another one called 'Tools', with a few sub-menus for all tools.
I was looking into adding it to page_header.php, but just adding another item to the array, doesn't seem to work properly, as the mouseout function does not hide the new menu.
This is what I'm trying to add:
I can rename one of the existing ones, for example cm, but that's not really how I want to do this, as there may be another couple of items I would like to add.
Cheers,
Fernando
We're looking into replacing an in-house developed monitoring tool with Zabbix (or Nagios). On our current monitoring, we have a bunch of built-in tools, like browsing a TFTP directory, switches and routers configs, find the switch a host is conencted to, and a lot more.
So, what I'm trying to do is customize the menus, and add another one called 'Tools', with a few sub-menus for all tools.
I was looking into adding it to page_header.php, but just adding another item to the array, doesn't seem to work properly, as the mouseout function does not hide the new menu.
This is what I'm trying to add:
Code:
'tools'=>array(
'label' => 'Tools',
'user_type' => USER_TYPE_ZABBIX_USER,
'node_perm' => PERM_READ_LIST,
'default_page_id' => 0,
'pages'=>array(
array('url'=>'tools1.php' ,'label'=>'Tools1 )
)
),
Cheers,
Fernando




Comment