Jira generic query to get the defects reported in a day

Anoop Pahwa August 4, 2015

Hi,

I would like to get the below details through JIRA Search

a) Defects reported in day by x no of members (Query should be generic rather than updating the createddate on daily basis)

b) No of defects Open, Closed, Reopened in day by group or members.

 

Thanks in advance.

3 answers

0 votes
Sateesh Chandra
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.
August 5, 2015

open , closed or reopened are the statuses and your search should be based on the statuses. You can use created >= in the second query as well.

0 votes
Anoop Pahwa August 4, 2015

Hi @Sateesh Chandra

Thanks for sharing the details.

For point b) I want all the defects open,closed or reopened in day rather than all the defects having these status

 

0 votes
Sateesh Chandra
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.
August 4, 2015

a) created >= startOfDay() and reporter in (abc, xyz) and issuetype = <issuetype>

b) issuetype = <issuetype> and status in (open, closed, reopened)

Suggest an answer

Log in or Sign up to answer