I have some developers working for my project and I would like to remunerate them by analysing the "time spent" on the issues they have recorded withing a time frame (e.g. last 2 weeks).
Is this possible via JIRA query language or should I be poking in the database to get such results?
Hi Jeffery, you may need to use some reports to generate an output detailing the amount of time spent on issues per developer. You cannot query worklog information using JQL.
JIRA does not come with a sophisticated time tracking report feature. But there are plenty of time tracking report plugins are available:
- One of the most popular reporting add-on is https://marketplace.atlassian.com/plugins/jira-timesheet-plugin
- a free REST API to query worklog info: https://marketplace.atlassian.com/plugins/org.everit.jira.worklog.query.plugin.core
There are other timetracking related add-ons available on the marketplace.
Tibor
Hi Jeffery,
You will need to do a manual calculation after retrieving the result from the JQL (Advance Searching) sample below, this will distinguish the time spent for a particular assignee.
project = affectedproject AND assignee = developers AND updated >= -2w ORDER BY created ASC
Then from your issue navigator, configure the column to show the time spent field and export to excel, from there you can sum the time spent up and compile the report for particular user.
I do understand this might involve manual working, you might also consider using the JIRA MISC Custom Field plugin as an assiting tool as they provide the calculate date/time field which will provide a sum or calculation based on the condition provided.
https://marketplace.atlassian.com/plugins/com.innovalog.jmcf.jira-misc-custom-fields
Hope this helps :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!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.