jenkinsci / allure-plugin

Allure Jenkins Plugin
https://plugins.jenkins.io/allure-jenkins-plugin/
Other
84 stars 62 forks source link

Build Graph - TREND #328

Open thiagosouza448 opened 1 year ago

thiagosouza448 commented 1 year ago

What feature do you want to see added?

I've a task in my work that i need to show build graph trend for business people, and they want change execution build number to build-details execution datetime or only %H:%M:%S, i inspect code of the plugin for jenkins and and tryed modify in file (floatingBox.jelly) but I didn't find this classe in /var/lib/jenkins/plugins

ALLURE

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form" xmlns:i="jelly:fmt" xmlns:local="local">
    <j:if test="${action.canBuildGraph}">
        <j:set var="a" value="${action.lastAllureBuildAction}" />
        <img lazymap="${a.buildNumber}/${a.urlName}/graphMap" src="${a.buildNumber}/${a.urlName}/graph"
        alt="Allure results trend"/>
    </j:if>
</j:jelly>

currently this automation runs as a observable because our service is external and does not provide access for observability package, and this automation runs every 10 minutes and i want show this trend graphs as a progressive runs

Upstream changes

No response