How to fetch Bamboo agent build success percentage via DB query
プラットフォームについて: 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 は除く
本記事で説明している手順は、現時点でのものとなります。そのため、一部のお客様で特定の状況下で動作したという報告がありますが、正式にサポートされているわけではなく、お客様の特定のシナリオで動作することを保証するものではありません。
本番環境での実施の前に一通り非本番環境で検証し、成功しなかった場合にはサポートされている代替案にフォール バックしてください。
要約
The purpose of this page is to fetch the success rate of all the agents in Bamboo via DB query. Currently this can be seen on the GUI under agent summary page for individual agents as below
環境
All supported version of Bamboo
ソリューション
Below query has been written which queries the below 2 tables to extract the results
1) BUILDRESULTSUMMARY - This table contains the details related to the build results
2) QUEUE - This table contains the details related to the agent
SELECT Q.TITLE AS Agent_Name,
COUNT(DISTINCT BRS1.BUILDRESULTSUMMARY_ID) AS Total_Builds,
COUNT(DISTINCT BRS.BUILDRESULTSUMMARY_ID) AS Total_Successful_Builds,
COUNT(DISTINCT BRS.BUILDRESULTSUMMARY_ID) * 100 /
COUNT(DISTINCT BRS1.BUILDRESULTSUMMARY_ID) AS Agent_Successful_Percentage
FROM BUILDRESULTSUMMARY BRS,
BUILDRESULTSUMMARY BRS1,
QUEUE Q,
QUEUE Q1
WHERE BRS.BUILD_AGENT_ID = Q.QUEUE_ID
AND BRS.BUILD_AGENT_ID = Q1.QUEUE_ID
AND BRS.BUILD_STATE = 'Successful'
AND BRS1.BUILD_AGENT_ID = Q.QUEUE_ID
AND BRS1.BUILD_AGENT_ID = Q1.QUEUE_ID
GROUP BY Q.TITLE
Please note the above query has been test successfully in PostgreSQL DB and might need modifications for other DB types