Forums

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

Structure: How to see which worklog author logged how much time on a Feature

Alex Agn
Contributor
March 7, 2024

Hi!

I'm trying to setup a structure in which I want to visualize the "FEATURES" with below all the users with the time they registered on that feature-ID

E.g,

ARTABC-123 (Feature-id)
      - Worklogauthor: Alex    1h
      - Worklogauthor: Frank: 2h
      - Worklogauthor: David: 3h

Does anyone know how to realize this?


2 answers

1 vote
Stepan Kholodov _Tempo_
Community Champion
March 7, 2024

Hello @Alex Agn 

You can try a formula like this:
worklogs.map(concat($.author, ": ", jira_hours($.timespent), "h"))

But it might be more convenient to use a different approach for showing how much time each user worked on an issue. You can find the example of such formula on this page (check for the 'Get a detailed description of the tasks users spent time on' example in the 'Users' section).

I hope this helps. If you need further assistance or have other questions about Structure, please reach out to us directly at our support portal.

Best regards,
Stepan
Tempo (the Structure app vendor)

0 votes
David Nickell
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.
March 7, 2024

if you are willing to use the REST API, its a matter of using the GET endpoint for an issue that includes the worklog.   So for example:

https://jira.atlassian.com/rest/api/2/issue/JRACLOUD-31024/worklog

tells you this (when you visualize the resulting JSON

worklog.png

Suggest an answer

Log in or Sign up to answer