Nagios XI 5 - Identical icons

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
User avatar
WillemDH
Posts: 2320
Joined: Wed Mar 20, 2013 5:49 am
Location: Ghent
Contact:

Nagios XI 5 - Identical icons

Post by WillemDH »

Hello,

Just noticed that in the new Host detail page, some icons are looking identical. It would be nice if each tab would have a different icon. More specific, I'm talking about the 'History', 'Notes' and 'Reactor' tab. Check screenshot.

Grtz

Willem
You do not have the required permissions to view the files attached to this post.
Nagios XI 5.8.1
https://outsideit.net
jdalrymple
Skynet Drone
Posts: 2620
Joined: Wed Feb 11, 2015 1:56 pm

Re: Nagios XI 5 - Identical icons

Post by jdalrymple »

These are just a default for custom components. We know about the problem and have discussed it internally. Basically we need to define in the custom component framework a way for people to include their own icons.

I'll turn it into a formal feature request right now...

6681

Fair enough?
User avatar
WillemDH
Posts: 2320
Joined: Wed Mar 20, 2013 5:49 am
Location: Ghent
Contact:

Re: Nagios XI 5 - Identical icons

Post by WillemDH »

Sure. But the Reactor tab is Nagios property right? ;)

Thread can be closed. Thanks.
Nagios XI 5.8.1
https://outsideit.net
jdalrymple
Skynet Drone
Posts: 2620
Joined: Wed Feb 11, 2015 1:56 pm

Re: Nagios XI 5 - Identical icons

Post by jdalrymple »

WillemDH wrote:But the Reactor tab is Nagios property right?
And that's why we link to forum threads in our feature requests :)

Closing.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Nagios XI 5 - Identical icons

Post by scottwilkerson »

Already exists, you can customize the icons for your tabs in custom components, in your CALLBACK_SERVICE_TABS_INIT callback add “icon” to your array, similar to the following:

Code: Select all

$newtab = array(
"id" => "freevariabletab",
"title" => _("Free Variables"),
"content" => $content,
"icon" => '<i class="fa fa-line-chart fa-lg"></i>'
);

$cbdata["tabs"][] = $newtab;
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Locked