How to find out plugin usage for Custom Content for JIRA

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

要約

As a Jira admin you may want to see how Custom Content for JIRA plugin is being used across your dashboards.

ソリューション

Since the plugin is used strictly for adding content to dashboards and not directly associated to projects in anyway, one way you to track is by using this query:

  • It will provide the dashboard name, their ids, the username who owns the board and the number of "Custom Content" gadgets used on that dashboard.

    select pg.pagename,pg.username,pg.id,count(*) from portletconfiguration pc
        join portalpage pg on pg.id=pc.portalpage
    where pc.gadget_xml like ('%customcontent%') group by pg.pagename,pg.username,pg.id; 

For reference, if you disable the plugin while it's still being used on the boards the users will start seeing a message like this:

The same could be applied for other gadgets that have a specific gadget_xml string that can be queried. You can see other values for it on portletconfiguration table.



最終更新日 2021 年 7 月 12 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.