Using JQL need to calculate the issues (sub-tasks) with "slow" reaction time

Artem Garmash July 7, 2017

Hi all,

Legenda:

Have parent issue with type = Story

Have sub-task wiht type = TestTask

Lifecycle: when Story moved to TESTING tester should start testing as soon as posible (move TestTask from ToDo to In Progress) 

 

What need to calculate:

the number of issues in sprint where the time of starting the testing the story is more than 1d

 

As i understand the request should be somethong like this:

project = 'TEST' and type = TestTask and ([time of transition of parent issue to TESTING] - [time of transition of current issue to IN PROGRESS] > 1d)

Does anyone have idea how to get the values for:

[time of transition of parent issue to TESTING]

[time of transition of current issue to IN PROGRESS]

 

1 answer

0 votes
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 7, 2017

You won't be able to do this with the default search options in JIRA since you are essentially looking to find issues based on the subtask status.

If you have a plugin like JQL Tricks, you can search issues based on parent or subtask status. Then you can do something like the follwoing:

project = 'TEST' AND status changed to "TESTING" before -1d AND issue in subtask("status = ToDo")

This will get you issues where the status was changed to TESTING before one day but has subtasks still in "ToDo" status. You can expand on this to write more complex queries.

Artem Garmash July 10, 2017

Thank you for your answer.

Suggest an answer

Log in or Sign up to answer