Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jira JQL that returns date of status change

Tags:

jira

jql

I'm trying to use JQL to measure cycle times (the Control Chart has other issues), so I need to get the date that an issue changed status. I see that one can use the CHANGED keyword to filter issues that have changed status on certain dates, but I see no way to actually list the date of the change as a column.

Any ideas? How would you guys address this lack of visibility into cycle time data?

like image 412
ScottEdwards2000 Avatar asked Nov 25 '13 00:11

ScottEdwards2000


2 Answers

There is no simple solution available in JIRA at the moment. See the issue https://jira.atlassian.com/browse/JRA-12825 for the whole discussion. The argumentation of Atlassian is the following:

  • There exists a product Service Desk that implements the SLA feature expressed here.
  • There are reports and additional plugins available that give similar information to this. See the JIRA Suite Utilities which give you a UI for each issue to see the transition summary.
  • JQL (JIRA Query Language) was intended to select all issues that match a query, not to select special information to these issues. You have to use the configuration of the table, if it is included there as a field of the issue (which it is not).
like image 50
mliebelt Avatar answered Jan 04 '23 06:01

mliebelt


In addition to the suggestions from mliebelt there is another at https://answers.atlassian.com/questions/128370/how-to-capture-date-of-state-change-in-jira. It requires JIRA Misc Workflow Extenstions and uses the "Copy value from field to field" function to capture the transition date in a custom field.

like image 22
Wayne Johnston Avatar answered Jan 04 '23 07:01

Wayne Johnston