Web Interfaces

Birdseye time format

Description:

Change Birdseye Clock Timeformat from 12h to 24h – Works in my Bidseye V 3.1.1 by 03/28/2016
Look for Version in /usr/local/nagiosxi/html/includes/components/birdseye/CHANGES.TXT

Current Version

Last Release Date

November 17, 2016

Compatible With

  • Nagios XI

Project Files
Project Notes
In Order to have Birdseye in NagiosXI Display 24h Format instead of 12h Change the Following Block in /usr/local/nagiosxi/html/includes/components/birdseye/includes/main.js _________________________________before: function update_clock() { var time = new Date(); var hours = time.getHours(); var minutes = time.getMinutes(); var seconds = time.getSeconds(); minutes = ( minutes < 10 ? "0" : "" ) + minutes; seconds = ( seconds < 10 ? "0" : "" ) + seconds; var post = ( hours < 12 ) ? "AM" : "PM"; hours = ( hours > 12) ? hours - 12 : hours; hours = ( hours == 0 ) ? 12 : hours; var str = hours + ":" + minutes + ":" + seconds + " " + post; $('#clock').html(str); } __________________________________after: function update_clock() { var time = new Date(); var hours = time.getHours(); var minutes = time.getMinutes(); var seconds = time.getSeconds(); minutes = ( minutes < 10 ? "0" : "" ) + minutes; seconds = ( seconds < 10 ? "0" : "" ) + seconds; hours = ( hours < 10 ? "0" : "" ) + hours; // var post = ( hours < 12 ) ? "AM" : "PM"; // hours = ( hours > 12) ? hours - 12 : hours; // hours = ( hours == 0 ) ? 12 : hours; var str = hours + ":" + minutes + ":" + seconds //+ " " + post; $('#clock').html(str); }
Reviews (0) Add a Review
Add a Review

You must be logged in to submit a review.

Thank you for your review!

Your review has been submitted and is pending approval.

Recommend

To:


From:


Thank you for your recommendation!

Your recommendation has been sent.

Project Stats
Rating
0 (0)
Favorites
0
Views
6,140