Hi all,
We're trying to create reports/dashboards revolving around issues with the most Issue Links.
I emailed in to Atlassian and received the following response:
I don't believe this is currently possible out-of-the-box although we are considering working on a similar feature. The way to work around that would be for you to write a dedicated sql query directly against the JIRA database to get this information.
We're using OnDemand, and it's my understanding that you can't directly query the database.
I then thought about using CustomWare to send data to Salesforce and report from there, but no. This is from their support team:
Thanks for the screen shot and the explanations. It's not possible to do that with the connector.
As you probably know, for OnDamand platform you only can query with the basic JQL functions but you can vote here for the new JQL features.
So how can I get at this data? Our end goal is to create a dashboard (graphs) outlining the issues with the most number of issue links or related issues, and break it out by which aspect of the business it affects.
Thanks in advance for your expertise.
Hi Tyler,
While it would require some additional development you can query issue links from the REST API using the following example:
curl -D- -u <user>:<pass> -X GET -H "Content-Type: application/json" https://<instance>/rest/api/latest/search?jql=project=<projectkey>&fields=summary,issuelinks
From the response, you would want the data within "issuelinks", "outwardIssue" and "inwardIssue"
Cheers,
Paul
hmm, is 'additional development' an option for OnDemand? I would love to be able to filter my kanban swimlanes based on number of blocking tickets.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Paul,
I am new to JIRA cloud and trying to find some way to query issue sin JIRA which can show me some specific filed (version) for linked issues .
Came across your answer and tried but i m not sure how to use it in this scenario to achieve my goal and how to view the output inside JIRA interface ?
Can you please tell me where to fire this curl command to view o/p inside jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi An, the answer above is external to JIRA. The command uses the REST API to return the results to your command line. I don't believe issue link queries can be run inside JIRA via JQL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi
Does anyone know if this has been resolved as of October 2018?
Thanks
Glenn
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.