Hello,
I have to export event type from issues in order to calculate a rate of disturbance (issues added to sprint after its start or issues removed while the sprint is in progress).
How can I specify this criteria in my request to export in CSV ?
Best regards,
Christophe CHALIGNE
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
javascript:(function(){
var csv = $('table.aui tr').toArray().slice(3).map((row) => $(row).find('td').map((index, cell) => $(cell).text()).toArray().join(',')).join('\n');
csv = 'data:text/csv;charset=utf-8,' + csv;
data = encodeURI(csv);
link = document.createElement('a');
link.setAttribute('href', data);
link.setAttribute('download', 'data.csv');
link.click();
})()
You should see a download prompt with the data.
Tested on Chrome and Jira Cloud.
Might break between different Jira versions.
Enjoy.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm also interested in a method to export or extract data from closed sprint burn down charts related to "sprint start", "burndown" and "scope change" and other event types that are tied to specific JIRA cards in that burn down. Any other suggestions how to do this?
PDF View plugin is not available to Cloud users so is not an option for me.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you mean the sprint events like "sprint start", "burndown" and "scope change" that are fired while the Jira Software sprint was running?
If so, that's not easily available -- as those are calculated on the fly by the logic that renders the Burndown Chart.
One thing you could eventually try is exporting the sprint to PDF like this one: http://www.midori-global.com/downloads/jpdf/jira-burndown-report-with-data-table.pdf
You can do that with the PDF View Plugin.
Then extract the text from the PDF (programatically) and process that plain text content.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you explain what you mean by "event type"? Is it a field on your issues?
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.