Sample Jenkins Plot Plugin Input Files

I am looking for a few examples of properties / csv files that act as input for the Jenkins Plot plugin. I tried to search a lot, but did not find any example that shows a clear example of how a graphics plugin expects an input file format.

+5
source share
1 answer

An example csv file ( example.csv ) could be as follows:

 data1,data2,total,threshold_total 100,201,301,500 

In Jenkins, you configured the graph using example.csv as a data series file. By selecting Load data from csv file , you can decide which columns to include or exclude. For example, if you select Include columns by name and as the exception values โ€‹โ€‹CSV total,threshold_total , a graph showing the values โ€‹โ€‹of total and threshold_total will be created.

+4
source

All Articles