I want to compare the performance of the developers in my team and for that, I need a query that can tell me the count(number of times a ticket was moved to Testing Failed status) and sort it by development owners
I have tried this query:
project = XYZ AND status changed FROM "Testing In Progress" TO "Testing Failed" AND "Development Owner" in (5e37dd74,5e43d7,5ef99583,5ee9d) ORDER BY "Development Owner"
But I am not able to achieve what I want. Please help.
Thanks!
This is a common misconception with JQL. it is not a full query language like SQL. It can only ever produce a list of issues. You can't use it to produce a tally or any other calculated value.
What you will need is a field in the issue that can track the number of times an issue has passed through a transition. ie
You can then use that field as a sort value in your JQL to produce a sorted list of issues.
There are also addons that can measure it for you. For exmaple.
https://marketplace.atlassian.com/apps/1211756/time-in-status?hosting=cloud&tab=overview
Hi @Divjyot Puri ,
You can try below apps. They provide status count report as well as various other status reports.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
However you choose to implement this idea, please consider that it may not indicate what you think it is measuring.
You asked about measuring the number of times a work item moves from "Testing In Progress" to "Testing Failed", which could happen for a variety of reasons:
Perhaps your team could consider each occurrence as a chance to learn and improve, rather than as a means to assume the people's performance.
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Also, you can consider another tool from the Atlassian marketplace. It lets you monitor data about the number of times a ticket went to a certain and moved from one status to another.
Regards
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.