I am wanting to identify the age of an item that has started the Status of "In Progress" but not been fully "Done". So I would like to start a "timer" once a ticket is pulled from the backlog and worked all the way till it is fully tested and placed in the "Done" column. I know about the column age indicator, but that isn't tracked across column. I would like to use the query capability in the card color section of the board to highlight tickets that are nearing a certain age.
Any help is apprecated.
Thanks
Hi @Bob Blakey,
Jira does provide cycle time analysis in the Control Chart report. You can read more about that in this support article.
It is not an exact answer to your question though, as you need to navigate to reports and as such away from your board to access the information. Still, very powerful stuff.
If you want to set card colours on the board, you'll have to make some tradeoffs. Let's assume you have a decent workflow that encourages you to move tickets from left to right through the board, then you can use the a simple set of conditions like this:
Resolution = Unresolved AND Status changed to "In Progress" BEFORE -5d (card colour -> yellow)
Resolution = Unresolved AND Status changed to "In Progress" BEFORE -10d (card colour -> orange)
Resolution = Unresolved AND Status changed to "In Progress" BEFORE -15d (card colour -> red)
The Resolution = Unresolved part is optional. But apart from that, it is only a matter of playing with the amount of days you want to use to define colours and putting your different rules in the right order.
Hope this helps!
This looks like it works exactly the way I want. I will play around with it, thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bob Blakey
You can read more about tools that allow calculating cycle and lead time without JQL here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bob Blakey
If you would be interested in a readymade solution, you can try out our plugin,
The add-on provides the time in each status for the entire lifecycle of the issue and you can filter by issue type as well. You can also combine your statuses to define your lead/cycle/resolution time and also extract the transitions history of the issues. The main features of the app are as below
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Bob Blakey
Control Chart of Kanban boards can be used for this purpose or at least some part of it. It offers limited transparency about its inner workings and has very limited flexibility but can help you get a very good overall picture.
If you need more details and more flexibility, our team at OBSS built Timepiece - Time in Status for Jira app for this exact need and more. It is available for Jira Server, Cloud, and Data Center.
Time in Status allows you to see how much time each issue spent on each status and each assignee.
You can calculate averages and sums of those durations grouped by the issue fields you select. For example average resolution time per week, month, issuetype etc.
The app calculates its reports using already existing Jira issue histories so when you install the app, you don't need to add anything to your issue workflows and you can get reports on your past issues as well.
Time in Status reports can be accessed through its own reporting page, dashboard gadgets, and issue view screen tabs. All these options can provide both calculated data tables and charts.
Using Time in Status you can:
Timepiece - Time in Status for Jira
EmreT
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bob Blakey,
Unfortunately, what you are looking for is not possible with the built-in functionalities of JQL. Because JQL can not make calculations and you need status time calculation.
For this exact need we developed Status Time Jira app. It provides reports on how much time passed in each status. By grouping statuses you can get cycle time(E.g from in progress status to done status). You can also export the report as CSV and open it in excel.
Once you enter your working calendar into the app, it takes your working schedule into account too. That is, "In Progress" time of an issue opened on Friday at 5 PM and closed on Monday at 9 AM, will be a few hours rather than 3 days. It has various other reports like assignee time, status entry dates, average/sum reports by any field(e.g. average in progress time by project, average cycle time by issue creation month). And all these are available as gadgets on the dashboard too.
Here is the online demo link, you can see it in action and try without installing the app.
If you are looking for a free solution, you can try the limited version Status Time Free. Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bob Blakey
I can think of three (+) ways to do this:
project = myProject AND issueType IN (Story, Task, Bug) AND statusCategory = "In Progress" AND statusCategoryChangedDate < -2d
Kind regards,
Bill
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.