It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Is there any command/script the will list all user installed plugins on a Confluence instance?
Thank you.
You can also write a script to parse the output of the UPM REST API:
https://ecosystem.atlassian.net/wiki/display/UPM/UPM+REST+API
curl $BASE_URL/rest/plugins/1.0/
will give you all plugins that are installed. You can filter which ones were user installed by the userInstalled
key, e.g. with jq:
curl $BASE_URL/rest/plugins/1.0/ | jq ".plugins | map(select(.userInstalled))"
N.B.: this does not only work with Confluence, but should work with JIRA and Stash (probably also Fisheye/Crucible) as well.
If you do not administrative permissions and the feature is not disabled, you can also retrieve a list of plugins via the 500page:
http://yourserver.com/path/to/confluence/500page.jsp
@webwesen
Um, talking about Confluence here :-) But the 500page.jsp also exists in JIRA. AFAIK the additional information cannot be disabled there so you should see the plugins list...
if you also need to see how the macro are used on your confluence environment you can install the Macro Usage Stats plugin from Comalatech https://plugins.atlassian.com/plugin/details/268?versionId=660
or Macro Usage from Atlassian https://plugins.atlassian.com/plugin/details/373502?versionId=373503
If looking at specific usage, you can also use the Confluence search to do it without any plugins (pre-4.0, at least).
Sarah Maddox's blog post covers how to do it pre-4.0.
http://ffeathers.wordpress.com/2011/11/04/how-to-search-confluence-for-usage-of-a-macro/
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHi Community! Kesha (kay-sha) from the Confluence marketing team here! Can you share stories with us on how your non-technical (think Marketing, Sales, HR, legal, etc.) teams are using Confluen...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.