how to get the count of open issues in a project

Ning Lv July 27, 2014

i'm new to jira rest api, and i want to get the count of all open issues in a project,

for example, get the number of open/resolved issues in project "TES"

how am i supposed to do it? I'll apprieate you help:)

here's my code,

public static void main(String[] args) throws URISyntaxException {
		final JerseyJiraRestClientFactory factory = new JerseyJiraRestClientFactory();
		final URI jiraServerUri = new URI(JIRA_URL);
		final JiraRestClient restClient = factory
				.createWithBasicHttpAuthentication(jiraServerUri,
						USER_NAME, PASSWORD);
		final NullProgressMonitor pm = new NullProgressMonitor();
		System.out.println("Initial done");
		Project myProject = restClient.getProjectClient().getProject("TES", pm);
		
//		final Issue issue = restClient.getIssueClient().getIssue("TES-2", pm);
//		
//		System.out.println(issue);
	}

1 answer

1 accepted

0 votes
Answer accepted
rambabu patina
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 27, 2014

Ning, I have a littile bit knowledge about rest api. But as of my knowledge, you can use the JQL query and the SearchRestClient interface to get the count of issue which ever you want.

For Example:

String jql="Project=TES and status in(Open,Resolved)"

int issuecount=restClient.SearchRestClient().searchJql(jql,pm).getTotal()

May this helps you,Thanks

Suggest an answer

Log in or Sign up to answer