Skip to content

Instantly share code, notes, and snippets.

@mpeterson
Last active August 6, 2019 14:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mpeterson/bb351543c4abcca8e7bb1205fcea4c75 to your computer and use it in GitHub Desktop.
Save mpeterson/bb351543c4abcca8e7bb1205fcea4c75 to your computer and use it in GitHub Desktop.
Greasemonkey script to see in Gerrit the currently running OpenStack Zuul CI jobs
// ==UserScript==
// @name Gerrit Zuul Status
// @author Michel Peterson
// @version 6
// @grant none
// @include /^https?://review\.openstack\.org/(#/c/)?\d*?/?(\d*)?/?$/
// @require https://code.jquery.com/jquery-3.3.1.min.js
// @require https://review.openstack.org/static/hideci.js
// ==/UserScript==
// Config
const zuul_status_base = "https://zuul.openstack.org/";
const zuul_status_url = zuul_status_base + "api/status/change/";
// /Config
// Script start
$('style#gerrit_sitecss').append('.result_RUNNING { color: #1e9ced; }');
var render = function(jobs) {
var location = $('table.test_result_table');
var table = '<tbody>' +
'<tr>' +
'<td class="header">Zuul check</td>' +
'<td class="header ci_date result_WARNING">Still running</td>' +
'</tr>';
$.each(jobs, function(i, job) {
var status_with_completeness = ((job.status === 'running' && typeof job.completeness !== 'undefined') ? 'RUNNING (' + job.completeness + ')' : job.status.toUpperCase());
var voting = job.voting === true ? '' : '<small> (non-voting)</small>';
table += '<tr>' +
'<td><a href="' + job.url + '" rel="nofollow">' + job.name + '</a>' + voting + '</td>' +
'<td><span class="comment_test_result"><span class="result_' + job.status.toUpperCase() +'">' + status_with_completeness + '</span></td>' +
'</tr>';
});
table += '</tbody>';
location.html(table);
};
var main = function() {
const url = $(location).attr('href');
const matches_url = /^https?:\/\/review\.openstack\.org\/(#\/c\/)?(\d*)\/?(\d*)?\/?$/.exec(url);
const change_id = matches_url[2];
var change_ver = matches_url[3];
if (typeof change_ver === 'undefined'){
change_ver = ci_latest_patchset(ci_parse_comments());
}
var status_url = zuul_status_url + change_id + ',' + change_ver;
$.getJSON(status_url, function(data) {
var queue;
var jobs = [];
if (data.length === 0){
if ($('.result_WARNING').length > 0){
location.reload();
}
return;
}
for(i=0; i <= data.length; i++){
queue = data[i];
if (queue.items_behind.length == 0){
break;
}
}
if (!queue){
console.log("couldn't find a queue");
return;
}
$.each(queue.jobs, function(i, job) {
var item = {};
item.status = job.result ? job.result.toLowerCase() : (job.url ? 'running' : 'queued');
item.name = job.name;
item.voting = job.voting
item.pipeline = job.pipeline;
item.url = job.result ? job.report_url : (job.url ? zuul_status_base + job.url : "#");
if (item.status === 'running' && job.remaining_time !== null){
item.completeness = Math.round(100 * (job.elapsed_time / (job.elapsed_time + job.remaining_time))) + '%';
}
jobs.push(item);
});
render(jobs);
setTimeout(main, 2000);
});
};
// So we refresh on each update.
MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(function(mutations, observer) {
var span = $("span.rpcStatus");
$.each(mutations, function(i, mutation) {
if (mutation.target === span[0] &&
mutation.attributeName === "style" &&
(!(span.is(":visible")))) {
main();
}
});
});
observer.observe(document, {
subtree: true,
attributes: true
});
@trown
Copy link

trown commented Jun 28, 2018

I noticed the gate queue has 1 entry in items.behind, so this fails to load jobs in gate.

If I change https://gist.github.com/mpeterson/bb351543c4abcca8e7bb1205fcea4c75#file-openstack_gerrit_zuul_status-user-js-L115 to be <2 it seems to work for both gate and check though.

@ssbarnea
Copy link

I think that the official repository hostin this code is now at https://github.com/openstack/coats/blob/master/coats/openstack_gerrit_zuul_status.user.js -- also accepting CRs on gerrit.

@mpeterson
Copy link
Author

Indeed, thanks for pointing that out @ssbarnea

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment