I'm trying to use Jenkins' Plot plugin to generate a graph of how many "TODO" markers we have in our code.
I have an XML file being generated as part of the build which includes data about them (among other things): each TODO marker has a line in the XML which looks like this:
<tag line="3" name="todo" description="Do something with this"/>
Using a stand-alone xpath tool, I can use an expression //tag[@name='todo'] to get all the matching elements, or count(//tag[@name='todo']) to just get the number of them.
This count is the value I want to plot. However I've been unable to get any data onto a chart in Jenkins.
I've created the plot and specified that it's an XML file. Jenkins then asks me if the result will be a Nodeset, Node, String, Boolean or Number.
I assume "Nodeset" would be applicable to //tag[@name='todo'] and "Number" to count(//tag[@name='todo']). But I've tried them both, and both of them just give me an empty graph, with no data plotted on it.
The most frustrating thing of all is that Jenkins doesn't give me any feedback on what the problem is; just the empty graph. Nothing in the build log, or anywhere else I can see.
Can anyone help me get this working? I can't find any examples anywhere. It seems like it ought to be simple, but it's just not happening for me.
Thanks in advance.
[EDIT]
A larger sample of the XML, as requested in the comments:
<?xml version="1.0" encoding="utf-8"?>
<project>
<method>
<docblock>
<tag line="763" name="todo" description="This needs doing"/>
</docblock>
</method>
<method>
<docblock>
<tag line="14" name="todo" description="This also needs doing"/>
</docblock>
</method>
</project>
(I've snipped out elements and attributes that aren't relevant, but this is the basic structure)
So as far as I can tell, there isn't any XML namespacing going on there.
/*/changeSet/item[1]/node/text()– Dimitre Novatchev Jan 20 '12 at 13:47