我如何配置 jenkins plot 插件来绘制所有行而不仅仅是最后一行?

How do i configure jenkins plot plugin to plot all rows and not just the last?

说,我的 csv 具有以下值。

"Series Label","Value" "A","613.0" "B","600.0" "C","572.0"

这就是 table 的显示方式 Build # Series 标签值 13 C 572.0

使用 csv 配置绘图插件,仅选择 C。这是插件的限制还是我需要做的不同的事情?我需要根据我的图表绘制 A、B、C。

说明中使用 csv 似乎有问题。引用插件帮助:

BUG: Currently, only the first row of the csv file is plotted, this may be changed in the future. The csv plugin expects the first row to contain the column names, and subsequent rows to contain the values to be plotted on a per column basis.

不过对我来说效果很好,您需要将标签放在第一行,然后将值放在后面几行。从我的测试来看,它只会使用最后一行作为值,即在下面的 csv 中,实际上只会使用(和绘制)粗体线:

"A","B","C"
"1","2","3"
"2","3","4"
"3","4","5"
另请注意,您不需要 labels/values.

两边的引号

tl;博士:

如果您生成的 csv 文件在第一行 标签 和第二行 ,您应该乖.