Hudson Plugin for viewing XML Data as a chart (over time) -


I am trying to find a way to get this work done:

Use server where I have some Maven builds. I have configured Findbugs for these places and the graph is also the plugin which shows me Findbugs trend. Now I've developed a Maven plugin that creates an XML file with some values ​​in it:

  & lt; RootElement & gt; & Lt; Name & gt; RootElement & lt; / Name & gt; & Lt; Subelement & gt; & Lt; Name & gt; Element1 & lt; / Name & gt; & Lt; SubValue & gt; 0.6 & lt; / SubValue & gt; & Lt; / Subelement & gt; & Lt; Subelement & gt; & Lt; Name & gt; Element2 & lt; / Name & gt; & Lt; SubValue & gt; 0.4 & lt; / SubValue & gt; & Lt; / Subelement & gt; & Lt; RootValue & gt; 0.5 & lt; / RootValue & gt; & Lt; / RootElement & gt;  

What I need is a type of table with the name of the element and its value (it may have expired / expired). In additional, I want to track the trend of values ​​over time. Since Hudson has saved the artifacts from keeping the XML of the final build, they can easily be reached within the Hudson plugin.

If this can not be suitable, then perhaps there is a possibility to use the XSL template to get results!

Can any Google Chart API use for the chart?

Look at this one I did not use it, but by the documentation, it seems that you What do you want. After the build ends, it reads the value from the Java property file. So you need to convert your XML to the appropriate format, and configure the plugin to read the desired value, and it should work.


Comments