Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I would like to see how long an "issue" has been in its current status. It seems the gadget on my dashboards will only show items after they are marked done? Any way to config it show time in status for all issues related to the project.
Basically Today (or now)- last status change=> associated to current status?
Hi,
Time in Status plugin allows you track status duration with user, project and advanced mode. There is time span configuration. You can also export to excel.
Hope it helps,
Tansu Akdeniz
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Doug Summe ,
I am happy to inform you that the original Timepiece - Time in Status for Jira app by OBSS now has cloud support:
We now have Server, Data Center and Cloud options.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI
Detailed explanation of my points mentioned earlier.
1. Through Jira suite utilities: You can view the transition time per status per issue by installing the jira suite utilities plugin. Once installed, Go to the jira issue and at the bottom click on transitions summary and you will see the time the issue spent on each status. The only drawback is you do not get average time spent but the individual ticket time spent.
2. Jira charting plugin: This plugin has a chart - Average Time in Status. It displays the average number of days/hours issues have spent in a particular status.
2. Through Jira charts: Resolution time chart might be useful. It is a slightly different metric but you can use this metric the same way to manage performance.
'Resolution Time'— a bar chart showing the average resolution time (in days) of resolved issues.
Hope it helps...
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There are two ways of doing it, Have a look at this URL
https://confluence.atlassian.com/display/JIRA/Tracking+the+Time+Taken+for+Each+Workflow+Transition
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
-- TIME IN STATUS - MySQL VERSION set @Status='Open; -- change name to your status and project set @Project='JRA'; select @Status,issuenum, sum(delta), count(*) loops from (select j.issuenum,startdate,min(enddate), TIMESTAMPDIFF(HOUR,startdate,min(enddate)) delta from (select issueid, created startdate from changeitem i, changegroup g where g.id=i.groupid and field='status' and newstring=@Status) a , (select issueid, created enddate from changeitem i, changegroup g where g.id=i.groupid and field='status' and oldstring=@Status) b, jiraissue j where startdate<enddate and a.issueid=j.id and b.issueid=j.id and j.project=(select id from project where pkey=@Project) and j.id=issue ) group by issuenum, startdate ) c group by @Status, issuenum
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if you need average, change sum to avg, or something like
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
{code} define Status = 'Open' select &&Status, ... {code}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks...! Your query is great ...! Please, could you tell me the correct way to write the sentence below:
"... where startdate < enddate ..."
I don't know what's it "<". I think that is an operational sign, but which is that?
thanks a lot.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Andres MalatestaThat should be a "less than" symbol, which is likely getting filtered by the forum software.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It would be ideal for us to be able to see the time in status on our board, so during standup we can at a glance see if stories are taking a long time in progress or blocked, etc. With a lot of team members, there is a lot in progress and hard to keep track of which ones might be stalled and which are just new tickets
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Now I feel silly. Turns out Jira has this EXACT feature. You just have to enable it under Board Settings -> Card Layout -> Days in column. Seems like an odd place to bury this feature
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It doesn't show the actual number of days, it's an indicator, a few colored dots. I haven't 100% figured out the full meaning of them yet (They don't show 20 dots if it's been 20 days)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome! They definitely could do a better job of pointing that feature out, and explaining it. I just hover over it to tell me the value. Beyond 4 days, it's harder to tell, at least for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@tousif shaikh Could you please elaborate on how did you do that. I need that please. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi,
we add the custom field and when we transition issue update the time diffrence to custom field this way we can work around it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We're looking for the same functionality. For example, we want chart the average time that issues CURRENTLY "in progress" have been in that status, and show the trend over time. Similar to JIRA's average age gadget, but for average time in a particular status.
This seems like fairly common metric many organizations would need, but surpringly I've been unable to find a plugin that does it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't see option to show average time in status for issues not resolved...is there a way to look at a current release (not complete) to see what was the average time spent in each stage...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.