How to detect the issues that stay on one status too long time?

sh zh August 7, 2014

Hi,

How can I get the issues, that stay on one specified status too long time.

Like Stay on "Open" status over 7 days.

Or Stay on "Review" status over 2 days.

Thanks,

Shaohua

4 answers

1 accepted

2 votes
Answer accepted
Udo Brand
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.
August 11, 2014

with JQL you can use

status = open and status changed to open before -7d

maybe you would have to exclude issues that were in the meantime reopened

..and not status changed from resolved to open after -7d

or something like this

Hope this helps

Alexey_Rjeutski__Polontech_
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.
August 11, 2014

For complex workflows that will require quite a big set of excludions. NOT status CHANGED is better solution - as for https://jira.atlassian.com/browse/JRA-26469CHANGED works with NOT

Like Reesy likes this
Andrew L February 24, 2020

Hi,

How do i query for "status has NOT changed for exactly X days"?

Thanks

--Andrew

Like Laura Truax likes this
12 votes
Alexey_Rjeutski__Polontech_
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.
August 11, 2014

Try JQL like:

status = "Open" and NOT status CHANGED AFTER "-7d"

status = "Review" and NOT status CHANGED AFTER "-2d"

Udo Brand
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.
August 11, 2014

as I said "... or something like this "

0 votes
Ege Su İnan April 8, 2015

Hi Everyone,

We recently released a plug-in that mesures time between status. I think Time in Status will solve your problem.

Here is the link to discover more about Time in Status.

https://marketplace.atlassian.com/plugins/com.obss.plugin.time-in-status

Thank you for your interest in OBSS Atlassian Platinum Partner 

0 votes
Tiago Comasseto
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.
August 11, 2014

You may use the Average Time in Status report or Transitions Summary Tab as suggested here.

Cheers

Suggest an answer

Log in or Sign up to answer