We have almost 20 projects in JIRA. I want to search below things.
What projects have tickets coming in that are not being addressed ? Addressed meaning : which have no actions from the time they got created.
Who is / are the main person / people addressing tickets within each project - not the project "owner" necessarily
To know if an issue was not updated you can use this :
NOT updated > -10d
This query will find all issue that haven't been updated in last 10 days, but you'll even get issue created one year ago and not updated. So you need to add some criteria in your query like status or created date.
createdDate >= startOfWeek() and NOT updated > -1d
For the second question , you mean the assignee ? The one you will work on the issue ?
Hi @Mohamed Benziane ,
Thanks for the suggestion. I am checking on the same.
About my second question. In other words we can say I want to search top performer in each project who is acknowledging and working on maximum tickets.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could do a JQL search for all issues created in a certain amount of time (7 days for example) and then see if they have been updated.
created >= -7d AND updated is EMPTY
This should show all issues that have been created, across all projects, that have had no updates since. Then you can change the columns of the filtered results to show the reporter - which will tell you who created the issue. The project key will indicate what project they are coming from.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jason Rogers ,
Thanks for replying to my query.
I am checking on the same. Will get back to for more suggestions.
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.