Table / report with amount of Issue Types resolved in a month

littlepixiez September 1, 2015

Is it possible to have a report / table generated that lists how many issue types we've resolved in one month?

Say I could pick a period, and then it would give me back soething like

Bug Reports       New Features
6                         8

Etc. Is this possible?? To do every month?

Thank you.

2 answers

0 votes
Peter Bengov
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.
September 2, 2015

Hi Tawny, 

If you have Confluence too, this could a good solution for you: https://answers.atlassian.com/questions/13418750.

As for JQL syntax I would use something like:

project = "relevant project" AND created >= startOfMonth() AND
created < endOfMonth() AND issuetype = Bug
0 votes
Pilar
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.
September 1, 2015

Create a filter which looks for all issues resolved in past 30 days(resolution!=Unresolved and created > -30d). Then input this filter into a dashboard gadget - Issue statistics and select issue type as your statistic. You will get your information.

In order to change the timeframe, update the JQL in your filter.

See this link for more details

https://confluence.atlassian.com/jira/adding-the-issue-statistics-gadget-185729546.html

 

Pilar

Suggest an answer

Log in or Sign up to answer