Agregate Expression on Dashboard

Petr Novy March 13, 2017

Script Runner add-on for JIRA provides experimental feature Aggregate Expression - https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_aggregateexpression

I am curious if those results can be somehow embedded on a JIRA dashboard.

2 answers

1 accepted

3 votes
Answer accepted
Jonny Carter
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 21, 2017

There is a REST Endpoint ( rest/scriptrunner-jira/latest/jqlfunctions/aggregateResult ) built into ScriptRunner that returns the results of the aggregateExpression function. You could send a GET request to it by fetching the a URL like the following, where the jql query parameter is a URL encoded JQL statment using aggregateExpression: <your-jira-instance-base-url>/rest/scriptrunner-jira/latest/jqlfunctions/aggregateResult?jql=project%3DPROJ+and+issueFunction+in+aggregateExpression("Expr"%2C+"timespent.sum()") 

The above is equivalent to this JQL:

project=PROJ and issueFunction in aggregateExpression("Expr", "timespent.sum()")

Getting that content into a Dasbhoard is a little trickier.

One path would be to use a Dashboard gadget that could take the output and display it. You could use something free like the Universal Gadget for JIRA plugin, or write your own gadget

Another path would be to wire the results into the UI using Javascript by way of a ScriptRunner UI customization. You'd most likely need to write some JavaScript (probably saved in your script roots as a web resource). That's likely to be pretty involved, and to require a fair bit of knowledge about front-end web development.

Of note, we have a request in our backlog (SRJIRA-2104) to add Scripted Dashboard gadgets to ScriptRunner, which would constitute a third way. That said, it's not on the immediate roadmap for SR for JIRA.

Petr Novy March 29, 2017

Good point, thanks for advice.

vs_krishnan August 18, 2019

Any new update on this feature ? Is there a way now of displaying the results of an aggregate expression in a dashboard ?

Jonny Carter
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 19, 2019

Not yet, but keep a watch on https://productsupport.adaptavist.com/browse/SRJIRA-2104, as we will update that issue when it is added to the sprint & worked on.

0 votes
MAG-II August 29, 2019

Hello - 

Is it possible somehow to show the results of an aggregateExpression on the Dashboard via HTML on the Text gadget?

 

Any thoughts?

Jonny Carter
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 30, 2019

Not out of the box, though if you'd like something like that, you should vote for https://productsupport.adaptavist.com/browse/SRJIRA-2104

Suggest an answer

Log in or Sign up to answer