Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

Birdseye time format

Rating
0 votes
Favoured:
0
Compatible With
  • Nagios XI
Owner
Hits
5910
Files:
FileDescription
000051.jpgScreenshot
Network Monitoring Software - Download Nagios XI
Log Management Software - Nagios Log Server - Download
Netflow Analysis Software - Nagios Network Analyzer - Download
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
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);
}