Can I filter the "Recently Created Issues Report" so that it only reports on bugs - not stories?

Kendal Walton
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 17, 2017

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?

1 answer

1 vote
Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 17, 2017

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:

  • created > StartOfDay() (issues created since the start of this day)
  • created > StartOfWeek() (issues created since the start of this week)
  • created > StartOfMonth() (issues created since the start of this month)
  • created > -20d (issues created in the last 20 days)

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.

Kendal Walton
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 17, 2017

Helpful to a newbie. I understand now. Thank you.

Suggest an answer

Log in or Sign up to answer