Hi,
In the past we have exported bug lists to Excel, performed processing on these lists offline & then taken the results into our Scrum meetings.
We used a rather involved VBA script for this processing and it is now time to re-evaluate this approach.
What we want
-Group and prioritise tickets and then determine which to fix, using various rules like "which fixes will liberate the greatest amount of blocked test effort?", "which features are blocked by which tickets?" etc.
-Graphical view of progress to end date/burndown of test effort (i.e. not just dev effort)
-Ideally an online approach that everyone can see anytime.
-If an offline approach, then use C# for interface to Jira and generating graphics.
So, what approaches are available and preferred?
Thanks!
Use R and the Rest API. Works nicely. Still stuck with the 1000 response limit though.
httr::GET( ...
Took a while but now sorted.
Better than csv export.
Hi Warren,
No, I have not got this working yet. I will try again tomorrow but so far:
1/ The code from Codeproject gives me -
***
System.ServiceModel.EndpointNotFoundException occurred
HResult=0x80131501
Message=There was no endpoint listening at… This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
***
An aside, I had to modify this line- and I am not certain as to what it should be. Its accompanying text shows it written slightly differently, including a "?".
IEnumerable<Atlassian.Jira.Issue><atlassian.jira.issue> jiraIssues = jiraConn.GetIssuesFromJql(jqlString , 999);
***
2/ Your snippet fails on this - WebRequest.Create
I assume that I am not forming the URL correctly. (I added our cloud URL as the prefix to the JQL query).
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Louis
This is the REST API document for cloud, there is an equivalent one for server. Using C# or any other language, you can extract any data out of Jira and then manipulate it and graph it.
My reply in this question gives some sample C# code to connect to Jira and use any of the calls in the first link.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.