how to write the jql query for bugs that are logged in a year, monthly wise
Hi @Praveen Kumar baradi and welcome to the Community!
You cannot write a query monthly wise. What you can do, however, is retrieve a list of bugs created in the last year:
Issuetype = bug and created >= -365d
This would fetch all bugs created in the last 365 days. To view these per month, you would need a visualisation tool to display them by month. You can do so with a Recently created chart on a dashboard. Save the above JQL search as a filter and use it as the source for your dashboard gadget.
A created vs resolved gadget might also do the trick.
Hope this helps!
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.