Skip to content

Instantly share code, notes, and snippets.

@wjkennedy
Last active October 7, 2020 11:20
Show Gist options
  • Save wjkennedy/0fb89751fba9ddbd4636a2bdf4c22275 to your computer and use it in GitHub Desktop.
Save wjkennedy/0fb89751fba9ddbd4636a2bdf4c22275 to your computer and use it in GitHub Desktop.
Hacky jq one-liner gets Top 100 most popular Jira Addons from the Marketplace
curl "https://marketplace.atlassian.com/rest/2/addons?application=jira&filter=popular&limit=100" | jq '._embedded.addons[]| [.name, .key, ._embedded.distribution.totalUsers, ._embedded.distribution.downloads]|@csv'|sed 's/\\//g'|sed 's/^\"//'| sed 's/\"$//'|tee -a jira.addons.csv
@wjkennedy
Copy link
Author

Change 'jira' to one of the 9 other applications; jira, confluence, bitbucket, bamboo, fecru, crowd, hipchat, opsgenie, statuspage for a similar report!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment