JQL to list out the time spent and the original estimate for a ticket.

prabu m May 22, 2020

We have created a task (common task like learning process) in the Jira, and multiple users are added a time spent in that task. For example,

User 'a' added 3h for 21/05/2020 and

User 'b' added 2h for 22/05/2020 again 

User 'a' added 5h for 22/05/2020

I want to generate a report (write a JQL query) to calculate the user 'a' ,how much time spent in that task  same for user 'b' also.

 

 

2 answers

1 accepted

1 vote
Answer accepted
Jack Nolddor _Sweet Bananas_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
May 22, 2020

Hi

Have you tried Team Worklog Reports ?

 

Regards

prabu m May 22, 2020

@Jack Nolddor _Sweet Bananas_ No, is it possible from JQL? because I need to show this in our Jira Dashboard?

User wise time spent for the particular Jira id. 

Jack Nolddor _Sweet Bananas_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
May 22, 2020

JQL has not groupBy operator, so you cannot  sum() worklogs.

To report worklog on Gadgets you can use Time Reports (PAID) third-party app.

 

Regards

prabu m May 22, 2020

@Jack Nolddor _Sweet Bananas_Thanks, Let me check the app.

0 votes
Ligia Merciu May 22, 2020

Hi there,

You can use 

worklogAuthor in (user a, user b) ORDER BY key ASC/DESC

and select the Σ Time spent column to display.

Jack Nolddor _Sweet Bananas_
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
May 22, 2020

I believe the field Σ Time spent does not split the results by users which is the OP requirement.

Suggest an answer

Log in or Sign up to answer