The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
We are looking for a way to report on project build plans that can include details such as the agents IP address', server details etc.
We want to be able to report in Bamboo and include details from the agents such as there IP address, Host name, etc.
Does anyone have or know of any mechanism that can report on agent server details out of Bamboo?
Hi @Matt Armstrong,
Bamboo does not have this type of report. What think you could do is:
SELECT BR.BUILD_KEY PLAN_JOB ,This will give you the number of times a give JOB used a give agent. It may solve your problem if you only want the agent name, hostname|ip.
COUNT(BR.BUILD_KEY) N_BUILDS,
Q.AGENT_TYPE,
Q.TITLE,
Q.AGENT_DESCRIPTION
FROM BUILDRESULTSUMMARY BR
JOIN QUEUE AS Q
ON BR.BUILD_AGENT_ID=Q.QUEUE_ID
GROUP BY BR.BUILD_KEY, Q.QUEUE_ID
ORDER BY PLAN_JOB, N_BUILDS
I hope that helps.
Hi, If you are running self-managed environments and looking to adopt modern infrastructure, Bamboo Data Center can now be deployed in a Kubernetes cluster. By leveraging Kubernetes, you can easily...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.