We are running JIRA Core Cloud project management and we are interested in extracting data to identify how long issues stayed in the different status' (To Do, In Progess, and Done).
We are on JIRA Core Cloud. Any suggestions?
thanks
Ross
My initial thought, while may require a certain amount of coding to handle, seems to be relatively simple by using the REST interface to pull the changelogs. There may be a plugin of some sort to do this since the information is stored there, but just needs to be computed.
The REST interface gives a JSON object with the changelog of a particular issue. You can grab this JSON object for the issues you want to calculate the status times and then have a script crunch them down. The REST documentation for the changelog is located here:
https://docs.atlassian.com/jira/REST/cloud/#api/2/issue/{issueIdOrKey}/changelog-getChangeLogs
There is a created date/time for each changelog that can be used along with the next status change created date/time to determine the time in that status.
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.