I’m trying to turn the following Power BI charts into Redash. How would I query this data from JIRA to get charts to look like this. There are not that many JIRA examples to used to help me accomplish this.
Query I’m Trying to Transform
project = "Security Operations Center" AND status in (Closed, "False Positive") AND created > "2021/07/01" AND created < "2021/07/31" order by updated DESC
{
"fields": "summary,assignee,priority,status,created,requestparticipants,customfield_10054,customfield_10043",
"jql": "organizations = Company AND created > {{ Date.start }} AND created < {{ Date.end }}"
}
I don’t know if JQL allows for aggregating syntax. But you can make the charts you require by adding a Query Results Data Source and pointing it at the output of your JQL. For example, if the query result you posted was query number 1234 you could create your first chart with the following QRDS query:
SELECT
customfield_10054,
count(*)
FROM query_1234
GROUP BY customefield_10054
ORDER BY count(*) DESC
Then make the horizontal bar chart from there.
1 Like
Login or sign up disabled while the site is in read only mode