I want to get details of the time logged for an issue. My Requirement is, If an issue is assigned to 3 users, then I want Time Log details for each user in that particular issue.
Can anyone please help me how to get this data?
Hi,
I believe you could get this information running a query on your JIRA database like the following
select * from worklog where issueid in (select id from jiraissue where assignee in ('user1','user2','user3')) and author in ('user1','user2','user3')
Hope this helps,
Marcus
Thanks Marcus... I want detail on which status I logged the time. Do you know any table from where I can get those details. Jiraissue Table has workflow_id, but can we get the workflow_id name?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can also use the workload piechart gadget to see the time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.