See my work log in jira

LoggingJira

Logging Problem Overview


I want to see how many total hours I have logged in jira. Currently jira shows work log for individual story / sub tasks. But is it possible to show the total amount of work logged in jira by individual developer.

It would be nice if it shows a kind of metrics where work logged against each day is shown.

Edit : can I see burndown chart for individual developer?

Logging Solutions


Solution 1 - Logging

We are using the Timesheet Reports and Gadgets Add-On for JIRA. It's available on the Atlassian Marketplace under a BSD licence, but it's not free.

On our JIRA 5.0.x server, it was accessible from the Projects tab > Summary page > Reports drop-down list > Time Sheet Report item.

After upgrading to JIRA 6.x, it was accessible from Projects tab > Summary page > Reports section heading > Time Sheet Report.

One tip for the timesheet report is that you don't need to give a beginning and end date for the report: it defaults to the past week. So you can bookmark the report and come back later for a report of the last week.

Solution 2 - Logging

One of the free option available is to use the browser extension named Jira Assistant available in below url. This extension has lot more useful features which not only helps to generate report, but also help to log your work on daily basis with notifications, calendar integrations and lot more cool features which helps both managers and team members in their daily activity:

For Chrome users: https://chrome.google.com/webstore/detail/jira-assistant/momjbjbjpbcbnepbgkkiaofkgimihbii?src=sof

For Firefox users: https://addons.mozilla.org/en-US/firefox/addon/jira-assistant/

Solution 3 - Logging

If you use atlassian, select your project, then go to the left toolbar and click diagram and select this report:

enter image description here

Solution 4 - Logging

There is no build in good way to achieve it but the maximum you can take with build in functionalities is following.

Options 1: Create filter like following JQL: worklogDate > startofWeek(-1w) AND worklogAuthor = john.smith

Then using worklog "Pie Chart" widget to sum. It is available for standard Dashboard. In "maximized" view it gives table with the numbers. It allows breaking by certain criteria. Then for each user you will need a widget on a dashboard to track which is not convenient.

Options 2: Use filter like given above to create Agile board and leverage "TimeTrackingReport" or "WorkLog" reports. Please bear in mind that Worklog report can be narrowed by User but does not give much flexibility enter image description here

Hope this helps!

Solution 5 - Logging

Dashboards -> My Dash -> [+ Add A Gaget] -> Tempo User Timesheet -> Add

will show total time for each day/tickets etc.

enter image description here

Solution 6 - Logging

I don't think it is possible with plain JIRA. You could use the REST api to build something yourself, or look at the various time tracking plugins for JIRA (Like Tempo). See also https://confluence.atlassian.com/display/JIRACOM/Using+JIRA+For+Time+Tracking

Solution 7 - Logging

You can use "sumUp for Jira" plugin

https://marketplace.atlassian.com/apps/1211625/sumup-for-jira?hosting=cloud&tab=overview

its sums up any numeric field values incl. worklogs and displays the sums in the issue navigator, dashboard gadgets or custom fields

You can create a filter with current user assignee and create a board with it and then you can add a burndown gadget to a dashboard to see the chart for each one

Solution 8 - Logging

You can use query like below in JIRA

project in ("TEST_PROJECT") AND worklogAuthor in ("[email protected]") AND worklogDate >= startOfMonth()

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPriyank DoshiView Question on Stackoverflow
Solution 1 - LoggingSteve HHHView Answer on Stackoverflow
Solution 2 - LoggingShridhar LView Answer on Stackoverflow
Solution 3 - LoggingStepan YakovenkoView Answer on Stackoverflow
Solution 4 - LoggingMiroslav SavovskiView Answer on Stackoverflow
Solution 5 - LoggingArtem SherbachukView Answer on Stackoverflow
Solution 6 - LoggingWim DeblauweView Answer on Stackoverflow
Solution 7 - LoggingYasser AbdallahView Answer on Stackoverflow
Solution 8 - LoggingAshish TripathiView Answer on Stackoverflow