jenkinsci / jenkinsci/plot-plugin
[JENKINS-50215] Jenkins Plot Plugin is not plotting data.
- Dominant language
- Java
- Stars
- 62
- Forks
- 93
- Avg merge
- 1d 17h
- Merged PRs (30d)
- 1
Description
We are configuring our job through dsl script.
Following is the dsl script:
plotBuildData {
plot('Namw', 'xyz.csv') {
csvFile('abcd.csv') {
includeColumns('avg_ct,avg_lt,avg_rt,stdev_rt')
showTable()
}
numberOfBuilds(6)
style('line')
title('title')
}
}
Now the issue which is coming, a seed job creates this particular job which uses plot plugin to plot graph.And when we run this job without doing any manual changes no graph gets plotted not even csv data displays.But as soon as we get inside config of this job and without doing any change also we just save the config so now it will say that this job has been manually changed since it was created by seed job and now when we run the job plot plugin behaves correctly and plots data and also lists out the csv.
Why is this happening that without the manual changes plot plugin is not working??
---
Originally reported by gulshan1234, imported from: Jenkins Plot Plugin is not plotting data.
vgaidarji
Raw content of original issue
We are configuring our job through dsl script.
Following is the dsl script:
plotBuildData {
plot('Namw', 'xyz.csv') {
csvFile('abcd.csv') {
includeColumns('avg_ct,avg_lt,avg_rt,stdev_rt')
showTable()
}
numberOfBuilds(6)
style('line')
title('title')
}
}Now the issue which is coming, a seed job creates this particular job which uses plot plugin to plot graph.And when we run this job without doing any manual changes no graph gets plotted not even csv data displays.But as soon as we get inside config of this job and without doing any change also we just save the config so now it will say that this job has been manually changed since it was created by seed job and now when we run the job plot plugin behaves correctly and plots data and also lists out the csv.
Why is this happening that without the manual changes plot plugin is not working??
Contributor guide
Assessment
This issue has not been assessed yet.