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
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try JQL like:
status = "Open" and NOT status CHANGED AFTER "-7d"
status = "Review" and NOT status CHANGED AFTER "-2d"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as I said "... or something like this "
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may use the Average Time in Status report or Transitions Summary Tab as suggested here.
Cheers
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.