How to fetch Bamboo agent utilization reports for build plans and deployments using database queries
プラットフォームについて: 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 は除く
本記事で説明している手順は、現時点でのものとなります。そのため、一部のお客様で特定の状況下で動作したという報告がありますが、正式にサポートされているわけではなく、お客様の特定のシナリオで動作することを保証するものではありません。
本番環境での実施の前に一通り非本番環境で検証し、成功しなかった場合にはサポートされている代替案にフォール バックしてください。
要約
This article explains how to generate a list of plans and deployment projects alongside the agents responsible for building them from the database.
環境
The SQL queries listed on this page have been tested on Bamboo 8.1.3 but may work with other versions of Bamboo as well.
ソリューション
データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
The SQL queries listed in this article cover the following reports:
Agent utilization for builds plans
The following SQL query will generate a list of all build plans alongside the agent responsible for executing them (incl. completed date & time):
SELECT Q.AGENT_TYPE,
Q.TITLE,
BS.BUILD_KEY,
BS.PLAN_NAME,
BS.BUILD_COMPLETED_DATE
FROM QUEUE Q
LEFT JOIN BUILDRESULTSUMMARY BS
ON Q.QUEUE_ID = BS.BUILD_AGENT_ID
ORDER BY Q.AGENT_TYPE,
Q.TITLE,
BS.PLAN_NAME
Agent utilization report for deployment projects
The following SQL query will generate a list of all deployments alongside the agent responsible for executing them (incl. completed date & time):
SELECT Q.AGENT_TYPE,
Q.TITLE,
DR.VERSION_NAME,
DR.ENVIRONMENT_ID,
DR.FINISHED_DATE
FROM QUEUE Q
LEFT JOIN DEPLOYMENT_RESULT DR
ON Q.QUEUE_ID = DR.AGENT_ID
ORDER BY Q.AGENT_TYPE,
Q.TITLE