How to Report on Average Number of Open Tickets for the last X Days

John Rauser May 31, 2017

I am trying to report on the average number of tickets that were open at any given time over the last X days, however I don't see any means of doing this.

Has anyone had any experience with this?

1 answer

0 votes
Chander Inguva
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 31, 2017

You can use a gadget "Issue Statistics" on Dashboard either based on resolution or based on status. Check screenshots attached.

with saved filter (JQL)

resolution is EMPTY AND updated >= startOfMonth() 

You can update the updated as per your needs. The above filter gives all unresolved issues from start of the month.(say for all May tickets)

Screen Shot 2017-05-31 at 4.06.43 PM.png

 

Screen Shot 2017-05-31 at 4.07.18 PM.png

Screen Shot 2017-05-31 at 4.08.57 PM.png

 

If you want a sql query

select count(*) from jiraissue WHERE RESOLUTION IS NULL AND UPDATED >= 'XXXXX'

Hope this helps

Chander

Suggest an answer

Log in or Sign up to answer