If you're on JIRA Server and have ScriptRunner installed, there's a JQL function you can use called aggregateExpression. Your JQL will look something like this:
project = TEST and issueFunction in aggregateExpression("Total Time Spent", "timeSpent.sum()")
Once you run the query, you'll see a box appear below the JQL search bar with this information.
More documentation on this here.
Thanks a lot, this function I was trying to find in Script Runner Documentation..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jurgen,
JQL does not calculate data the same way a SQL SUM function would. JQL is a query language that will only retrieve data. Please see the Advanced Searching Fields Reference for more information about what fields JQL can search.
In regards to calculating the time worked for each issue, the time tracking function will do that automatically when a user logs work. Once they do that you should see something similar to the screenshot I attached:
Hopefully this helps!
Cheers,
Branden
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.
But now I have another question that I have questioned before.
Can I use SQL to retrieve data from Jira DB in order to maker reports, calculate timetracking and stuff like this ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can, but you won't like it. Retrieving the data on-screen for a single issue can be 30-40 "joins" in SQL. It would be far better and easier to find (or even write) an addon that can do the reporting you need.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nic thanx again for your quick response, I explained the problem here at my office but they think that this is smth nice to have because everyone can do those reports, so that's why I aksed Brenden if he had any idea helping me out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or if I will try to write an add-on by myself, what programming language should I use ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
JIRA is written in Java, so add-ons are easiest to write in that.
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.