Display last_reconfigured in zuul status page

Change-Id: I908e20ca28ec71f765e7078e131e295fad61b09b
This commit is contained in:
Sergey Lukjanov 2014-01-11 00:12:47 +04:00
parent df550c543a
commit 4df0a22940
1 changed files with 6 additions and 1 deletions

View File

@ -66,6 +66,10 @@
if ('zuul_version' in data) {
$('#zuul-version-span').text(data['zuul_version']);
}
if ('last_reconfigured' in data) {
var last_reconfigured = new Date(data['last_reconfigured']);
$('#last-reconfigured-span').text(last_reconfigured.toString());
}
$.each(data.pipelines, function (i, pipeline) {
html += zuul.format.pipeline(pipeline);
@ -228,8 +232,9 @@
$queueResultsNum = $queueEventsNum.next();
$pipelines = $('<div class="row"></div>');
$zuulVersion = $('<p>Zuul version: <span id="zuul-version-span"></span></p>');
$lastReconf = $('<p>Last reconfigured: <span id="last-reconfigured-span"></span></p>');
$container = $('#zuul-container').append($msgWrap, $indicator, $queueInfo, $pipelines, $zuulVersion);
$container = $('#zuul-container').append($msgWrap, $indicator, $queueInfo, $pipelines, $zuulVersion, $lastReconf);
zuul.schedule();