Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I would like to have a Monthwise list of all Tickets between 7 PM to 12 AM

Ritesh Kumar Sanjay September 3, 2018

I want to have a month wise list of all tickets generated between 7 PM to 12 AM

2 answers

0 votes
Piotr Bojko
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.
September 3, 2018

With SmartQL - https://marketplace.atlassian.com/apps/1218767/smart-ql-sql-jql-easy-reporting?hosting=server&tab=overview - you can run following query:

 

select * from issues
where created between TIMESTAMP '2016-11-01 00:00:00' and TIMESTAMP '2016-12-01 00:00:00'
and extract(hour from created) > 8 and extract(hour from created) < 17

 

SmartQL extends your JIRA with SQL features. You can mix JQL and SQL. With full support of JIRA permissions model.

0 votes
Krisztian Kovacs
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.
September 3, 2018

hi @Ritesh Kumar Sanjay,

Unfortunately Jira stores the created date as a date that you need to parse in order to get the time. So I'd probably use scriprunner for jira, that does that following:

  1. collects a month worth of tickets
  2. goes through each of them
    1. parses the created date
    2. if the hour is not between 7 and 12 it deletes the item
  3. sends the issue list in email or just lists it in the logs

Would that make sense? Alternatively you could maybe export the monthly list as CSV and use Excel to filter out things?

Ritesh Kumar Sanjay September 3, 2018

Thanks @Krisztian Kovacs  Script runner is out of my context here, How can I collect monthly list of Tickets for a particular project, JIRA Filter does not have date range options.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events