跳到主要内容
版本:v0.17

Azure DevOps(Beta)

Summary

This plugin collects Azure DevOps data through Azure DevOps REST API.

Entities

Check out the Azure DevOps entities collected by this plugin.

Data Refresh Policy

Right now, this plugin supports only full refresh. Check out the [data refresh policy](/zh/docs/v0.17/Overview/SupportedDataSources#Azure DevOps) of this plugin.

Metrics

Metrics that can be calculated based on the data collected from Azure DevOps:

Configuration

Configuring Azure DevOps via config-ui.

API Sample Request

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": "MY PIPELINE",
"plan": [
[
{
"plugin": "azuredevops",
"options": {
"connectionId": 1,
"scopeId": "orgname/reponame",
"transformationRules": {
"deploymentPattern": "",
"productionPattern": ""
}
}
}
]
]
}
'