Is it possible to get snapshot of jira issues statuses on the specific date? For example, I want to get statuses of issues for my project on 27th of January. It seems that it is not possible to do this with JQL. Are there any other approaches?
To make use of plain JIRA:
Make a couple of filters for your status, and add one "Issue Statistics' gadget per filter in a dashboard (say using Project Name as the criteria). So you will get count of one status per gadget.
status WAS "Open" DURING ("2013/01/27","2013/01/27")
There can be a small issue as those issues which got transitioned during that day will appear in multiple statuses (so pickup a holiday to avoid that situation, which is true in this case)
We dont want to be specific about the status. It can be any status. Is there a way to do it with standard JQL or is there any point in time reporting available ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
try this:
AND status was in (***add all relevant statuses you have***) ON ('YYYY/MM/DD')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Won't this still show the current status of the ticket though? Not the status of the ticket on that date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For the actual tickets statue you are correct - JIRA is dynamic and there for will present the current status.
but JQL result is all tickets that where on the status you searched on this specific date.
JQL should run per status
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The above query will list the ticket that has the specific status on a specific date. However, if the status of the ticket got changed several times on the date then that ticket will meet the criteria for several status.
If I only want to find the tickets that has DONE status as the "last status" for the specific date, how should I write the query?
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.
@air455 @Michal Gasparovic
add to the JQL -
AND Current status in <status u want>
so jql should be:
Project in (PROJECT) AND status was in (STATUS) ON ('YYYY/MM/DD') and status in (STATUS)
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.