This plugin collects Jenkins data through Remote Access API. It then computes and visualizes various DevOps metrics from the Jenkins data, which helps tech leads and DevOps engineers to answer questions such as:
Check out the Jenkins 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 Jenkins:
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": "jenkins",
"options": {
"connectionId": 1,
"scopeId": "auto_deploy",
"transformationRules":{
"deploymentPattern":"",
"productionPattern":""
}
}
}
]
]
}
'
or
curl 'http://localhost:8080/pipelines' \
--header 'Content-Type: application/json' \
--data-raw '
{
"name": "project1-BLUEPRINT",
"blueprintId": 2,
"plan": [
[
{
"plugin": "jenkins",
"options": {
"connectionId": 1,
"jobFullName": "auto_deploy",
"transformationRules":{
"deploymentPattern":"",
"productionPattern":""
}
}
}
]
]
}
'