看看我在 Jira 的工作记录

我想看看我在 jira 总共登录了多少小时。目前 jira 显示单个故事/子任务的工作日志。但是是否可以显示单个开发人员在 jira 中记录的工作总量。

如果它显示一种度量标准,其中显示每天的工作日志,那就太好了。

Edit : can I see burndown chart for individual developer?

114345 次浏览

我不认为这是可能的普通 JIRA。您可以使用 REST api 自己构建一些东西,或者查看 JIRA 的各种时间跟踪插件(比如 节奏)。参见 https://confluence.atlassian.com/display/JIRACOM/Using+JIRA+For+Time+Tracking

We are using the JIRA 的时间表报表和小工具附件. It's available on the Atlassian 集市 under a BSD licence, but it's 不是免费的.

On our JIRA 5.0.x server, it was accessible from the 项目 tab > 摘要 page > 报告 drop-down list > 时间表报告 item.

升级到 JIRA 6.x 后,可以从 项目选项卡 > 摘要页 > 报告节标题 > 时间表报告进行访问。

关于时间表报告的一个提示是,您不需要给出报告的开始和结束日期: 它默认为上周。这样你就可以把报告加入书签,然后回来看上周的报告。

如果您使用 atlassian,请选择您的项目,然后转到左侧工具栏,单击图表并选择此报告:

enter image description here

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:

对于 Chrome 用户: Https://chrome.google.com/webstore/detail/jira-assistant/momjbjbjpbcbnepbgkkiaofkgimihbii?src=sof

对于 Firefox 用户: Https://addons.mozilla.org/en-us/firefox/addon/jira-assistant/

虽然没有很好的构建方式来实现它,但是您可以在构建功能中获得的最大值如下。

备选方案1: 创建过滤器,如下面的 JQL: worklogDate > startofWeek(-1w) AND worklogAuthor = john.smith

然后使用工作日志“ Pie Chart”小部件进行求和。它可用于标准仪表板。在“最大化”视图中,它给出了带有数字的表格。它允许根据某些标准进行破坏。然后,对于每个用户,您将需要在仪表板上的一个小部件来跟踪不方便的部件。

选择2: 使用如上所示的过滤器来创建敏捷板,并利用“ TimeTrackingReport”或“ WorkLog”报告。请记住,Worklog 报告可以被用户缩小,但是没有给予很大的灵活性 < img src = “ https://i.stack.imgur.com/1mioK.png”alt = “ enter image description here”> < img src = “ https://i.stack.imgur.com/1mioK.png”alt = “ enter image description here”>

希望这个能帮上忙!

你可以使用“ sumUp for Jira”插件

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

它汇总包括 worklog 在内的任何数字字段值,并在问题导航器、仪表板小工具或自定义字段中显示汇总值

您可以使用当前用户指定人创建一个过滤器,并使用它创建一个板,然后可以向仪表板添加一个 burndown 小工具,以查看每个小工具的图表

仪表板-> My Dash-> [ + Add A Gaget ]-> Tempo User Timesheet-> Add

将显示每天的总时间/门票等。

enter image description here

You can use query like below in JIRA

project in ("TEST_PROJECT") AND worklogAuthor in ("testuser@testjira.com") AND worklogDate >= startOfMonth()