Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

which dashboard gadget will provide bug count per year

hari
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!
July 7, 2023

I am trying to create a two dimensional graph or statistics in Jira Dashboard for:

1. overall bug count per year 

2. over all bug count per year ,grouped by environments. 

 

3 answers

3 votes
Tim Perrault
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.
July 7, 2023

Hi @hari 

 

You could create a filter and then use the two dimensional filter statistics gadget where the Xaxis is Issue Type and the Yaxis is Environments . JQL to capture all bugs created within the year below:

issuetype = Bug AND created >= startOfYear() AND created <= endOfYear() ORDER BY created DESC
0 votes
Marlene Kegel - codefortynine
Atlassian Partner
August 3, 2023

Welcome to the community, @hari.

I am Marlene from codefortynine.

If you want to filter per year dynamically you could try our app Quick Filters for Jira Dashboards.

With our app you can add a Quick Controller gadget on your dashboard which filters the other Quick Gadgets dynamically.

On you Quick Controller you could create  a filter for "Created Date" and let it interact with the Quick Filter Counts gadget which displays the number of bugs.

You can check out our app without installation on our demo dashboards.

quick-filters-jira-dashboards_track-per-year.png 

0 votes
abhishek_sharma03
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.
July 8, 2023

Hi @hari You can easily do this by creating JQL filter - 

Project = "ABCDE" AND type= Bug AND created >= startofYear() AND created <= endOfYear() ORDER by created DESC

Do you want to do it for specific year or current year ? 

The above query provides you the list of bugs created in the current year.

If you have environments as components in your bugs then you can have them displayed in 2 dimensional filter statistics with Xaxis is Issue Type and the Yaxis is Environments 

BR

Abhishek

Suggest an answer

Log in or Sign up to answer