You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to find out total log work for multiple issues i have worked on for this month. Is there any way to find this?
Unfortunately, there's no easy way to view the total logged time per user directly in Jira. There's the time tracking reporting available (Reports -> Time Tracking Report), but it only shows the total time logged per Jira issue, which includes the time that everyone has logged into the particular issue.
One way to easily see all of your (or other users') worklogs is via third-party apps. There's a cheap solution that we have built at SolDevelo, that allows to easily check the worklogs of any user during the selected time range. Worklogs - Time Reports for Jira are available for both Jira Server and Jira Cloud. Here's how the report looks like:
Best,
Sebastian
Hi,
there is another possible solution we (END2END) have developed in our marketplace app Worklog express.
There is a quick form you can use to create worklogs on multiple Jira issues defined by JQL. You can also filter users for which you want to display totals in a defined period of time while having an option to create additional or edit existing logs.
There is also a possibility to export all worklog related data to excel and create your own reports. You can find more info on Worklog express documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI, You can can view it in the database
select p.pkey,j.issuenum,w.author,w.CREATED, (w.timeworked/60/60) as "Log work"
from project p
inner join jiraissue j on p.id=j.project
inner join worklog w on w.issueid=j.id order by w.CREATED DESC;
or use plugins
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.