diff --git a/modules/openstack_project/files/zuul/status.html b/modules/openstack_project/files/zuul/status.html index 0bec62f041..c698b9e537 100644 --- a/modules/openstack_project/files/zuul/status.html +++ b/modules/openstack_project/files/zuul/status.html @@ -133,6 +133,9 @@ td.tree { #graph-container img:first-of-type { margin-left: 0px; } +#zuul_info_container { + margin-top: 12px; +} a:link { color: #204A87; } @@ -346,6 +349,14 @@ $("#graph-container").append($(new Image()).addClass('graph').graphite({ +
+

Zuul info

+

+ Zuul version: + +

+
+ diff --git a/modules/openstack_project/files/zuul/status.js b/modules/openstack_project/files/zuul/status.js index d5c72755ea..3aeb0ff827 100644 --- a/modules/openstack_project/files/zuul/status.js +++ b/modules/openstack_project/files/zuul/status.js @@ -415,10 +415,18 @@ function clean_changes_lists() { window.zuul_collapsed_exceptions = new_collapsed_exceptions; } +function update_zuul_info(data) { + if ('zuul_version' in data) { + $('#zuul-version').text(data['zuul_version']); + } +} + function update() { var html = ''; $.getJSON('http://zuul.openstack.org/status.json', function(data) { + update_zuul_info(data); + if ('message' in data) { $("#message").attr('class', 'alertbox'); $("#message").html(data['message']); @@ -440,7 +448,6 @@ function update() { data['trigger_event_queue']['length']); $("#result_event_queue_length").html( data['result_event_queue']['length']); - }); clean_changes_lists();