Jira provides canned reports, one of which is the Recently Created Issues Report. I believe that it includes numbers for all issues regardless of whether they are bugs, stories or epics. Is there a way to filter this report, or create another similar report that provides the same information limited to bugs?
Sure!
Using JQL you can create dynamic filters that can help you do this. A few suggestions to filter for recently created issues might be:
And so on ...
As this is JQL, you can combine the time criteria with issue type information. So, if you want a list of only bugs created since the beginning of this week, you might set up a JQL statement like this:
created > StartOfWeek() and issuetype = Bug
Then, save your filter and use it as the source for a Filter Results gadget on a dashboard.
Helpful to a newbie. I understand now. Thank you.
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.