Show Jenkins plots on project home page

I am using the PLOT plugin in Jenkins and it creates a "Plots" link under the left hand link bar. What I am looking for displays these graphs on the main project page. Whenever any user visits the project homepage, he / she should be able to see the graphs easily (without going to build / workspace).

+3


source to share


1 answer


While I don't know how to configure the Plot plugin to display on the project page (as can be done for compiler warnings), you can put Plot images in the project description along with other basic HTML formatting:

<p> Here are some plots:
  <img src="plot/getPlot?index=0&width=400&height=300"/>
</p>

      



I believe the index argument allows you to choose from several charts.

+1


source







All Articles