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,996
Community Members
 
Community Events
184
Community Groups

Is there way view all the triggers for the various plans in a single place?

We would like to see when and what various jobs are expected to run so that we can effectively utilize the resources ( agents ) better by scheduling plans when there are likely to be more free agents. Also helps us plan down times.

2 answers

4 votes
Rafael Pinto Sperafico
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Mar 15, 2019

Hi @Subhi Andrews ,

You can consume a REST API endpoint and review all the CRON jobs Bamboo will be executing next (including builds to be triggered):

# USERNAME, replace with Bamboo Administrator username
# http://localhost:8085/bamboo, replace with Bamboo's Base URL

curl -k -u USERNAME -H "Accept: application/json" \
-X GET http://localhost:8085/bamboo/rest/admin/1.0/scheduler/jobs

As a result, you will find which plans will be executed when having (Scheduled, Single daily run, Repository Polling - Periodically and Scheduled)

{
"name": "CHAIN:PROJ-PLAN:1",
"groupName": "repository.change.jobs",
"nextScheduledTime": "2019-03-16T00:00:00.000Z"
},

And no information on this REST API endpoint for Remote trigger, Bitbucket repository triggers the build when changes are committed.

In case you are looking for more detail information regarding on Build Triggers in Bamboo, you could run a SQL statement against Bamboo's database and XPATH "build_definition-XML_DEFINITION_DATA" to get the trigger set up under Plan configuration >> Trigger tab:

select b.FULL_KEY
, XPATH_GET_TRIGGER
from build b
join build_definition bd on b.build_id = bd_build_id
where XPATH_TRIGGER_IS_DEFINED;

You should find the following in :

<configuration xml:space="preserve">
...
<triggers>
<defined>true</defined>
<triggerDefinition>
<id>1</id>
<name>Repository polling</name>
<userDescription>p</userDescription>
<isEnabled>true</isEnabled>
<pluginKey>com.atlassian.bamboo.triggers.atlassian-bamboo-triggers:poll</pluginKey>
<triggeringRepositories>5341185</triggeringRepositories>
<config>
<item>
<key>repository.change.poll.pollingPeriod</key>
<value>1800000</value>
</item>
<item>
<key>repository.change.poll.type</key>
<value>PERIOD</value>
</item>
<item>
<key>repository.change.poll.cronExpression</key>
<value>0 0 0 ? * *</value>
</item>
</config>
<conditions>
<item>
<key>custom.triggerrCondition.plansGreen.enabled</key>
<value>false</value>
</item>
</conditions>
</triggerDefinition>
</triggers>

The example above is for Repository Polling - Periodically, so you can notice:

  • <pluginKey />, relates to the type of triggering method available (e.g com.atlassian.bamboo.triggers.atlassian-bamboo-triggers:poll)
  • <triggeringRepositories />, informs to which repository the trigger has been defined
  • repository.change.poll.type, relates to type of Repository Polling selected, in this case PERIODically
  • repository.change.poll.pollingPeriod, what is the interval between triggering events (e.g 1800000 seconds)

As you can notice, it is require some effort in order to get the information you are looking for. I would encourage you on commenting, voting and/or becoming a watcher to https://jira.atlassian.com/browse/BAM-19972(REST) As an admin, I would like to review plan(s) triggering so you can receive latest updates.

Kind regards,

Rafael

Thanks so much for a super helpful and informative post, Rafael! 

I don't see this in the REST API docs and it isn't working for me.

Here's a feature request that might be of interest to those who are reading this. Please vote

https://jira.atlassian.com/browse/BAM-21194

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events