This plugin collects Bamboo's CI data through API. It then computes and visualizes various DevOps metrics from the Bamboo data, which helps tech leads, QA and DevOps engineers, and project managers to answer questions such as:
Check out the Bamboo entities collected by this plugin.
Check out the data refresh policy of this plugin.
Metrics that can be calculated based on the data collected from Bamboo:
You can trigger data collection by making a POST request to /pipelines.
curl 'http://localhost:8080/pipelines' \
--header 'Content-Type: application/json' \
--data-raw '
{
"name": "project1-BLUEPRINT",
"blueprintId": 1,
"plan": [
[
{
"plugin": "bamboo",
"options": {
"connectionId": 1,
"key": "TEST",
"transformationRules":{
"deploymentPattern":"",
"productionPattern":"",
}
}
}
]
]
}
'