Reputation: 51
I need help in querying the hsqldb of my JIRA instance to find count of open issues in each project and display this data on my gadget. What do I need to use ? Can it be done directly using jql ? Thanks.
Upvotes: 5
Views: 17002
Reputation: 13536
The latest version JIRA Cloud now has a Filter Count gadget available, which seems to do what you need:
Here's how it looks like in the wild:
It should eventually make it into JIRA Server, as most features do.
Upvotes: 2
Reputation: 11
By this way I have created dashboard that shows number of open bugs per each component in the project.
We are using Jira version 6.0.5
Upvotes: 1
Reputation: 17836
I don't think you could do that out-of-the-box, but you could do this by using using JQL Tricks Plugin. If you wish to design something of your own you could query Jira using the remote API and save the results as an HTML page. Than you could use Jira Custom Content Plugin the to show the page in the dashboard. Finally schedule the query to run every minute or so.
Hope that this answers your questions.
Upvotes: 1