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 は除く

本記事で説明している手順は、現時点でのものとなります。そのため、一部のお客様で特定の状況下で動作したという報告がありますが、正式にサポートされているわけではなく、お客様の特定のシナリオで動作することを保証するものではありません。

本番環境での実施の前に一通り非本番環境で検証し、成功しなかった場合にはサポートされている代替案にフォール バックしてください。

また、アトラシアン サポートのサポート対象外のご質問の場合には、Community もご活用ください。

要約

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

Results :



最終更新日 2023 年 7 月 13 日

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

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