Jenkins pipeline more rows in stage view

Viewed 4901

I have a Jenkins Pipeline and we are running and we have 14 different concurrent runs running at once. (waiting for a set period of time).

Only 12 rows are showing on the stage view. Is there a way to expand the stage view to see more rows?

3 Answers

It comes a little late, but the answer is: add this parameter to the Jenkins Java VM (e.g. in /etc/default/jenkins):

-Dcom.cloudbees.workflow.rest.external.JobExt.maxRunsPerJob=32

So for instance

JAVA_ARGS="-Djava.awt.headless=true -Dcom.cloudbees.workflow.rest.external.JobExt.maxRunsPerJob=32"

(32 is the number of rows displayed after restarting Jenkins).

@Stefan Seidel 's anwser works great, but our Jenkins instance is runing in a docker container, so it's hard to access the Jenkins' config file.

After some research, I found a way to do it in the Jenkins dashboard website (no need to restart Jenkins):

  1. Open "Manage Jenkins" -> "Script Console"

  2. Run the script:

System.setProperty('com.cloudbees.workflow.rest.external.JobExt.maxRunsPerJob', '32')
Related