Hi,
Can someone suggest what can be the query to fetch the bugs which were atleast in re-open status before they got closed. Also if possible can we check how many times the bug was re-opened?
Any help is really appreciated.
Maybe you can try the following query:
status CHANGED FROM "Re-opened" TO "Closed"
Another solution I'd like to suggest is Issue History for Jira (the app from my team. If you need to see changes only for specific status transitions, you can use the status filter.
Check if it can help with your case.
Hello @Porush Verma
As an alternative, you can try Time in Status for Jira Cloud and its Time in Status and Status Count reports.
A Time in Status report shows how long the issue has been spent in each status.
A Status count report shows how many times an issue has been in each status.
This add-on is developed by my team. Let me know if you have any questions.
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.
You can try Status Time Reports app developed by our team. It mainly provides reports and gadgets based on how much time passed in each status. You can also get status entry count and entry dates reports.
Here is the online demo link, you can see it in action and try without installing the app. For your case, you can have a look at Status Count & Entry Dates reports.
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.
Hello @Porush Verma ,
To get the issues that were in Reopened status in the past but that are currently closed, you can use the following JQL query.
status was Reopened and Status = Closed
To get how many times the issues were reopened, you will need to use a marketplace app.
Our team at OBSS built Timepiece - Time in Status for Jirafor this exact need. It is available for Jira Server, Cloud, and Data Center.
Time in Status has many report types but particularly Status Count and Transition Count reports will help you. These reports show how many times each Status and each Transition were used.
For all numeric report types, you can calculate averages and sums of report values grouped by the issue fields you select. For example, total re-open count per issue type or average reopen count per week, month, issuetype, request type, etc. The ability to group by parts of dates (year, month, week, day, hour) is particularly useful here since it allows you to compare different time periods or see the trend.
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. It supports both Company Managed and Team Managed projects.
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.
And the app has a REST API so you can get the reports from Jira UI or via REST.
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.
If you are fine with a mktplace app, you can try out our add-on to get this data. .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Porush Verma ,
Hope you are doing good!!
You can try a JQL for example
project = X and issuetype = task AND status changed FROM "Reopened" TO "Done"
And on your second question, I think this can be achieved through automation, but I am not aware let me try, and will post the workaround.
Regards,
Mayur
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.