How to disable FishEye Charts gadgets and Recent Changesets gadgets in 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 は除く

目的

If you do not use FishEye or Crucible, you may not want users to have the ability to add related gadgets into Jira Dashboards. These gadgets include:

  • FishEye チャート
  • Crucible チャート
  • FishEye 最近のチェンジセット

ソリューション

  1. Visit Jira Admin Settings
  2. Choose Manage Apps
  3. Change dropdown from "User apps" to "All Apps"
  4. Find FishEye plugin in the list
  5. Click "X of X modules enabled" link
  6. Finally, disable the gadgets of your choosing: 
    1. Fisheye Charts (fisheye-charting-gadget)
    2. Crucible Charts (crucible-charting-gadget)
    3. Recent Commits (fisheye-recent-commits-gadget)

  7. Success! Now these gadgets will no longer be available for selection when adding a new gadget. Any of these gadgets already added to Jira Dashboards will be replaced by a "this gadget cannot be loaded" placeholder.

Understanding what dashboards use these gadgets

If you wish to understand what dashboards have these gadgets added, you may use the following SQL


The following SQL was tested on Jira 8.5, on Postgres 9.6 You may need to adjust the query if you are using a different Jira version or database

select DISTINCT pp.id, pp.username AS user_key, pp.pagename AS dashboard_name, CONCAT('https://YOUR_JIRA_DOMAIN_HERE/secure/Dashboard.jspa?selectPageId=', pp.id) AS url from portalpage pp
INNER JOIN portletconfiguration pc on pc.portalpage = pp.id
WHERE pc.gadget_xml LIKE '%fisheye-charting-gadget%' OR pc.gadget_xml LIKE '%crucible-charting-gadget%' OR pc.gadget_xml LIKE '%fisheye-recent-commits-gadget%'




説明 How to disable FishEye Charts gadgets and Recent Changesets gadgets in Jira
製品Jira
最終更新日 2021 年 4 月 28 日

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

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