Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,423
Community Members
 
Community Events
184
Community Groups

How to get remote agent status details for one particular agent using bamboo rest api?

I am able to get the status of all the build agents using the command

curl -k -H "Content-type: application/json" -X GET https://devci-adbamboo.corp.aal.au/bamboo/rest/api/latest/agent/ -u username:password

But i only need one agent status at a time. I tried  passing id as the path variable and also uuid of that particular agent but i am getting 404 response.

Can anyone please help me out with it?

1 answer

1 vote
Daniel Santos
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Mar 27, 2019

Hi @Staicy susan mathew

The rest API for agents does not have the option to filter a specific agent, but that can be achieved by other tools like JQ (JSON processor). Let me share an example with you where I filter the agent called Walter White:

$ curl -u admin:password -X GET http://<BAMBOO_URL>/rest/api/latest/agent | jq -r '.[] | select(.name | contains ("Walter White"))'

% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 474 0 474 0 0 9030 0 --:--:-- --:--:-- --:--:-- 9115

{
"id": 5111810,
"name": "Walter White",
"type": "LOCAL",
"active": true,
"enabled": true,
"busy": false
}

As a result, I get just the agent I needed. The same strategy could be used to filter by other fields.

I hope it helps.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events