I need to know how to create a filter and dashboard in Jira that shows how many tickets change from 'Testing' to 'In Development' and the developer who was working on these tickets.
This will help track the developer's effort and determine how many times tickets move from testing back to development, allowing us to evaluate the developer's performance.
Hi @Mahmoud Yaseen ,
You can create filter with below query and you can other parameters like project and issue types in the query.
status CHANGED from Testing to 'In Development'
after creating the filter, you add filter results gadget on the dashboard. while adding the gadget you can select the required columns(like status,developer..etc) to display
Hi @Mahmoud Yaseen 👋
Welcome to the Community!
Another way can be through gadget in add-on such as Time in Status.
You can display dashboard in Jira that shows tickets that change from 'Testing' to 'In Development' and the developer who was working on these tickets by List View or Chart View.
Also you can display data in by Chart View. (here is average report)
Here is the configuration menu, so you can configure your report precisely for your needs.
Add-on has a 30-day free trial version and free up to 10 users.
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.
Jira doesn't have a built-in solution for the reports you mentioned. 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.
Here is the online demo link, you can see it in action and try without installing the app.
1. To get a report of how many times the status of each issue is changed, you can have a look at Status Count And Entry Dates report. Entry date(see In Development, Ready for Testing, In Testing, In Development columns.) is status transition date and status count(see #In Development, #Ready for Testing, #In Testing, #In Development columns) is how many times an issue is entered to this status.
2. To get a report of how much time each assignee spent on issues, you can have a look at Time in Assignee report.
App Features:
For further details, you can have a look at Status Time Reports How to Videos.
If you are looking for a completely free solution, you can try the limited version Status Time Reports Free.
If you have any questions, feel free to schedule a demo with us.
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.
Welcome to the community !!
You can use Jira API's to extract this data. Or as suggested by Stephen use a mktplace app for the same.
You can take a look at the add-on we have developed for the same use case.
The status transition details report shows when the issue was transitioned to which status and on which date and by whom. The other report which can be helpful is the status transition count, ie how many times the issue went from which status to another. Also the app has 20+ reports to track your bottleneck Issues & Processes. The data from this app can be easily extracted to a CSV file too. Do give it a try.
Disclaimer : I work for the vendor who built this app
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mahmoud Yaseen the JQL that @Sreenivasaraju P will give you that information but it will pick up every time a ticket was changed from Testing to In Development, you can specify a time range or time period, e.g.
For changes in last 14 days:
Status CHANGED from Testing to "In Development" AFTER startofday(-14)
For changes since the start of last week:
Status CHANGED from Testing to "In Development" AFTER startofweek(-1)
For changes in a certain date range:
Status CHANGED from Testing to "In Development" DURING (2024-06-01, 2024-06-14)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes I got this point! but the issue when you tried to create the Dashboard, what should I use to know (How many times ticket changed from In Testing to In Development example ticket X (4 times) Ticket Y ( 2 times)..etc and who was working on this tickets)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is a bit more tricky and you will only be able to do that for status changes that happen from now rather than ones that have already happened.
There are apps on the marketplace that may be able to help you, but you can do it via automation as well.
If you want to use automation you will have to first create a new number custom field e.g. 'Rework numbers', then create automation:
In your filter / dashboard you can then have Rework number as a column
This assumes that the assignee for each ticket remains the same otherwise you'll have to create another custom field to store names.
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.