Skip to content

Instantly share code, notes, and snippets.

View gsomoza's full-sized avatar

Gabriel Somoza gsomoza

View GitHub Profile
@gsomoza
gsomoza / durations.js
Created February 15, 2024 14:27
Jenkins Job Total Durations
/*
* Run this on the Blue Ocean activity page to add up all job durations visible on that page.
*/
(function(){
const durations = [...document.querySelectorAll('[data-runid] a:nth-of-type(5) span')].map(i => i.textContent);
console.log(durations);
const validDurations = durations.filter(duration => !duration.startsWith("<"));