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.
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.