gpt4 book ai didi

azure - 如何获取特定任务的Azure管道任务状态?

转载 作者:行者123 更新时间:2023-12-02 08:16:28 25 4
gpt4 key购买 nike

我的目的是获取作业中特定管道任务的状态。

我尝试发送一个 API 调用,引用 Reference Link 处的方法。但它只返回任务的运行日志。

是否有任何方法可以获取管道任务的状态信息?我们能否获得一项任务的状态?

如有任何建议和指示,我们将不胜感激。

最佳答案

对于发布管道,我认为这个API应该满足您的要求:

https://vsrm.dev.azure.com/<Organization Name>/<Project Name>/_apis/Release/releases/<Release ID>?api-version=6.0-preview.6

响应示例:

{
...,
"environments": [
{
...,
},
"deploySteps": [
{...,
"releaseDeployPhases": [
{...,
"deploymentJobs": [
{
"job": {
"id": 8,
"timelineRecordId": "9a737f0c-559e-5660-b520-9a7c39e93149",
"name": "Agent job",
"dateStarted": "2022-07-22T07:46:39.81Z",
"dateEnded": "2022-07-22T07:46:46.2633333Z",
"startTime": "2022-07-22T07:46:39.81Z",
"finishTime": "2022-07-22T07:46:46.2633333Z",
"status": "failed",
"rank": 1,
"issues": [],
"agentName": "Hosted Agent",
"logUrl": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/releases/37/environments/37/deployPhases/41/tasks/8/logs"
},
"tasks": [
{
"id": 4,
"timelineRecordId": "0f34296d-9707-4f4e-a489-e841851c4f47",
"name": "Initialize job",
"dateStarted": "2022-07-22T07:46:40.1733333Z",
"dateEnded": "2022-07-22T07:46:41.7833333Z",
"startTime": "2022-07-22T07:46:40.1733333Z",
"finishTime": "2022-07-22T07:46:41.7833333Z",
"status": "succeeded",
"rank": 1,
"issues": [],
"agentName": "Hosted Agent",
"logUrl": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/releases/37/environments/37/deployPhases/41/tasks/4/logs"
},
{
"id": 5,
"timelineRecordId": "f9eb04f6-a1bd-4d30-86ed-d32704f0f6ec",
"name": "Download Artifacts",
"dateStarted": "2022-07-22T07:46:41.7933333Z",
"dateEnded": "2022-07-22T07:46:42.5233333Z",
"startTime": "2022-07-22T07:46:41.7933333Z",
"finishTime": "2022-07-22T07:46:42.5233333Z",
"status": "succeeded",
"rank": 2,
"issues": [],
"agentName": "Hosted Agent",
"logUrl": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/releases/37/environments/37/deployPhases/41/tasks/5/logs"
},
{
"id": 6,
"timelineRecordId": "ee21b6e5-e611-5d0a-7967-2a6e400a3b0f",
"name": "Extract files ",
"dateStarted": "2022-07-22T07:46:42.5233333Z",
"dateEnded": "2022-07-22T07:46:46.2433333Z",
"startTime": "2022-07-22T07:46:42.5233333Z",
"finishTime": "2022-07-22T07:46:46.2433333Z",
"status": "failed",
"rank": 3,
"issues": [
{
"issueType": "Error",
"message": "Failed rmRF: Command failed: rd /s /q \"D:\\a\\r1\\a\"\nThe process cannot access the file because it is being used by another process.\r\n",
"data": {
"type": "error",
"logFileLineNumber": "16"
}
}
],
"task": {
"id": "5e1e3830-fbfb-11e5-aab1-090c92bc4988",
"name": "ExtractFiles",
"version": "1.200.0"
},
"agentName": "Hosted Agent",
"logUrl": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/releases/37/environments/37/deployPhases/41/tasks/6/logs"
},
{
"id": 0,
"timelineRecordId": "eae0669a-e2ad-530b-f008-4105bdd5d304",
"name": "PowerShell Script",
"dateStarted": "2022-07-22T07:46:46.2433333Z",
"dateEnded": "2022-07-22T07:46:46.2466667Z",
"startTime": "2022-07-22T07:46:46.2433333Z",
"finishTime": "2022-07-22T07:46:46.2466667Z",
"status": "skipped",
"rank": 4,
"issues": [],
"task": {
"id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1",
"name": "PowerShell",
"version": "2.200.0"
},
"agentName": "Hosted Agent",
"logUrl": "",
"resultCode": "Evaluating: succeeded()\r\nResult: False\r\n"
},
{
"id": 7,
"timelineRecordId": "cfbbae06-d8fc-4d1e-a79b-f920071e5481",
"name": "Finalize Job",
"dateStarted": "2022-07-22T07:46:46.25Z",
"dateEnded": "2022-07-22T07:46:46.2566667Z",
"startTime": "2022-07-22T07:46:46.25Z",
"finishTime": "2022-07-22T07:46:46.2566667Z",
"status": "succeeded",
"percentComplete": 100,
"rank": 5,
"issues": [],
"agentName": "Hosted Agent",
"logUrl": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/releases/37/environments/37/deployPhases/41/tasks/7/logs"
}
]
}
],
"manualInterventions": [],
"startedOn": "2022-07-22T07:46:36.16Z"
}
],...,
}
}
],
"variables": {},
"variableGroups": [],
"artifacts": [
{
"sourceId": "c6358b04-e91a-4bd1-a894-1adb543134d6:221",
"type": "Build",
"alias": "_buildartifact",
"definitionReference": {
"artifactSourceDefinitionUrl": {
"id": "https://dev.azure.com/xxx/_permalink/_build/index?collectionId=b1cc953d-b564-4eec-a222-84393e4406b1&projectId=c6358b04-e91a-4bd1-a894-1adb543134d6&definitionId=221",
"name": ""
},
"branches": {
"id": "main",
"name": "main"
},
"buildUri": {
"id": "vstfs:///Build/Build/2119",
"name": null
},
"definition": {
"id": "221",
"name": "buildartifact"
},
"IsMultiDefinitionType": {
"id": "False",
"name": "False"
},
"IsXamlBuildArtifactType": {
"id": "False",
"name": null
},
"project": {
"id": "c6358b04-e91a-4bd1-a894-1adb543134d6",
"name": "xxx"
},
"repository.provider": {
"id": "TfsGit",
"name": null
},
"repository": {
"id": "a433b7a0-a23c-4c18-9d14-d0859568dec3",
"name": "buildartifact"
},
"requestedFor": {
"id": "15365687987",
"name": null
},
"requestedForId": {
"id": "af91e22a-cc35-4c8e-8af3-f49c4a1b9b6a",
"name": null
},
"sourceVersion": {
"id": "3d0b3f71bc2391b95325fabb0b3b48a8ade2014f",
"name": null
},
"version": {
"id": "2119",
"name": "20220722.1"
},
"artifactSourceVersionUrl": {
"id": "https://dev.azure.com/xxx/_permalink/_build/index?collectionId=b1cc953d-b564-4eec-a222-84393e4406b1&projectId=c6358b04-e91a-4bd1-a894-1adb543134d6&buildId=2119",
"name": ""
},
"branch": {
"id": "refs/heads/main",
"name": "refs/heads/main"
}
},
"isPrimary": true,
"isRetained": true
}
],
"releaseDefinition": {
"id": 9,
"name": "DownloadArtifactAndShow",
"path": "\\",
"projectReference": null,
"url": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/definitions/9",
"_links": {
"self": {
"href": "https://vsrm.dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_apis/Release/definitions/9"
},
"web": {
"href": "https://dev.azure.com/xxx/c6358b04-e91a-4bd1-a894-1adb543134d6/_release?definitionId=9"
}
}
},
...
}

您可以看到所有任务的情况都在响应中。任务的状态也在那里。

对于构建管道,没有公共(public) API 可以直接获取任务的状态,您需要分析响应中的日志来获取任务的状态。

https://learn.microsoft.com/en-us/rest/api/azure/devops/build/builds/get-build-logs?view=azure-devops-rest-6.0

关于azure - 如何获取特定任务的Azure管道任务状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73086035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com