1

I use Jenkins and its Plot Plugin to generate statistics.

Example: For every Build I plot the line of codes. Lets say I have like 500.000 lines and it changes about +-100 lines per build.

Since the plot y-axis always starts with 0 the whole plot is meaningless. It looks like 1 straight line.

Same goes for other metrics, if the value is too high.

Question: is there any configuration to set minimum y-axes to the minimum value?

4

1 回答 1

2

不幸的是,我认为您的问题的答案目前是“否”。

首先,文档没有给出任何关于这种选择的提示。

其次,鉴于 Jenkins Plot 插件使用JFreeChart进行绘图,Y 轴范围的设置应使用“ getRangeAxis ”函数完成。在源代码中的搜索不会显示对该函数的调用。

最后,您似乎不是唯一遇到此问题的人。问题 JENKINS-2841 要求相同的功能,但似乎尚未解决。

于 2014-06-08T11:54:47.867 回答