i want to get the each status counts.
for example, from the below json, i can get the total number
but i want to know the each status counts. (open : ??ea, In Progress : ??ea, Closed : ??ea, etc..)
{
Here's one a bit "hacky" solution:
Call the two dimentional filter statistics gadget REST endpoint with the proper parameters and parse the result. Here's a sample URL:
rest/gadget/1.0/twodimensionalfilterstats/generate?filterId=filter-11604&xstattype=statuses&ystattype=statuses&sortDirection=asc&sortBy=natural&numberToShow=5')
Where filter-11604 is the a filter you created that has the JQL you need i.e. componentMatch(~~~~~~)
shall i create the filter?
"~~~~~" are changable values. So i can't register the filter with the certain value
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You need to have a filter, so this might not work for you then. You can try implementing a REST endpoint which returns the results you need. To do that you can write a plugin using JAVA or write a scripted REST endpoint using Script Runner
https://scriptrunner.adaptavist.com/latest/jira/rest-endpoints.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't think you can achieve that using the JIRA REST API with just 1 REST call. You have to make separate call for each status (include the status in the jql query).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i use REST API, rest/api/2/search?jql=component in componentMatch(~~~~~~)&fields=key,summary,status&maxResults=500
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you trying to get these from a script which calls the REST API ? Or you just need to see this information somewhere, because you can see this on a dashboard.
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.