You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm looking to create a customer report but I can't find any documentation or examples on how to do this. Any guidance would be appreciated!
Hello @christok
Please tell me that you can use a bash script for that!
Otherwise, you will need to transcript the script I just did for you.
It uses the following rest APIs:
Reference: Bamboo REST API documentation 6.9.2
It also uses ./jq command-line JSON processor to filter the results.
#!/bin/bash
USER=admin
PASSWORD=admin
BAMBOO_URL=http://localhost:8085/bamboo
PROJECTS=`curl -s -u $USER:$PASSWORD \
-H 'Accept: application/json' \
-X GET "$BAMBOO_URL/rest/api/latest/project" \
| jq -r '.projects.project[] | .key'`
PLANS=""
for PROJECT in $PROJECTS
do
PROJECT_PLANS=`curl -s -u $USER:$PASSWORD \
-H 'Accept: application/json' \
-X GET "$BAMBOO_URL/rest/api/latest/project/$PROJECT?expand=plans" \
| jq -r '.plans.plan[] | .key'`
PLANS+=" $PROJECT_PLANS"
done
PLANS_AND_BRANCHES=""
for PLAN in $PLANS
do
PLANS_AND_BRANCHES+=" $PLAN"
BRANCHES=`curl -s -u $USER:$PASSWORD \
-H 'Accept: application/json' \
-X GET "$BAMBOO_URL/rest/api/latest/plan/$PLAN/branch" \
| jq -r '.branches.branch[] | .key'`
PLANS_AND_BRANCHES+=" $BRANCHES"
done
for PLAN_BRANCH in $PLANS_AND_BRANCHES
do
curl -s -u $USER:$PASSWORD \
-H 'Accept: application/json' \
-X GET "$BAMBOO_URL/rest/api/latest/result/$PLAN_BRANCH" \
| jq -r '.results.result[0] | "Plan:" + .key + " Name:\"" + .plan.name + "\" lifeCycleState:" + .lifeCycleState + " buildState:" + .buildState'
done
Another option is to build a Bamboo plugin for that. If you decide on this approach I suggest you follow this document:
I hope that helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.