stop rotation views by default

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
orcasa
Posts: 6
Joined: Thu Aug 23, 2012 7:07 am

stop rotation views by default

Post by orcasa »

I want to desactivate rotation on views tab, How can i do it?
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: stop rotation views by default

Post by scottwilkerson »

This option isn't built into XI, but you can add it as a feature request on our tracker
http://tracker.nagios.com

That being said I can tell you how to do it. Add the following line to the end of
/usr/local/nagiosxi/html/includes/js/views.js

Code: Select all

setTimeout(function(){pause_view_rotation()},2000);
The down side of this is that it will get overwritten when you upgrade to a new version.
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
orcasa
Posts: 6
Joined: Thu Aug 23, 2012 7:07 am

Re: stop rotation views by default

Post by orcasa »

Thanks man! it works!
Locked