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

bamboo server monitoring

Neeraj Singh October 30, 2019

Hi,

We want some monitoring mechanisms to check the following?

1.No of agent connected at the moment?

2.Is the Bamboo server is accessible or not

2 answers

1 accepted

0 votes
Answer accepted
Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 31, 2019

You can use the Bamboo REST API to achieve 1 in a similar fashion via a GET /agent?online call:

Provides a list of all agents. Use query parameter "online = true/false" 
to filter only online agents.

 So something along the lines of (top of my head):

curl --user username:password -H "Accept: application/json" \
https://example.com/bamboo/rest/api/latest/agent | jq 
'. | length'

Update

Here's a more specific example to confirm my memory (based on HTTPie rather than cURL).

Initially there are 2 local and 0 remote agents:

λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent | jq '. | length'
2
λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent/remote | jq '. | length'
0

I've then started 2 elastic agents in addition to the 2 local ones, which yield 4 agents overall:

λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent | jq '. | length'
4
λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent/remote | jq '. | length'
2

Terminating 1 elastic agent yields the expected outcome too:

λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent | jq '. | length'
3
λ http -a user:pass http://example.com/bamboo/rest/api/latest/agent/remote | jq '. | length'
1

 

 

Neeraj Singh October 31, 2019

Currently, I am doing this way

curl --user adminuser:password https://bamboo.com/bamboo/reconfigureVirtualAgents.action | grep -o '<p>Available remote agent slots'

I will try your suggested approach as well.

Neeraj Singh October 31, 2019

@ Steffen: Yours suggested that doesn't fulfill my requirement.I guess I put the wrong question.

I have a license of x agents,I want to check how many agents are online at the moment so that I can plan my activities accordingly.

Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
November 1, 2019

@Neeraj Singh - I'm afraid I don't t really get what you are asking for here. I've updated my answer with a more specific example to confirm my memory, and it seems to yield the expected result by telling me how many agents are currently available - is this not the 'No of agent connected at the moment' that you are looking for?

Neeraj Singh November 3, 2019

@Steffen Opel _Utoolity_Thanks for your knowledge sharing.It was great and helpful

1 vote
Neeraj Singh October 31, 2019

2. Done with following command

curl --user username:password -H "Accept: application/json" [https://bamboo.com/bamboo/rest/api/latest/server | jq .state

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events