-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvss-extension.json
More file actions
133 lines (131 loc) · 4.5 KB
/
vss-extension.json
File metadata and controls
133 lines (131 loc) · 4.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"manifestVersion": 1,
"id": "ci-visibility",
"version": "0.0.8",
"name": "Datadog CI Visibility",
"publisher": "datadog",
"public": true,
"description": "Quickly connect your Azure Pipelines to Datadog to gain comprehensive visibility into the performance of your pipelines, stages, and jobs",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
}
],
"icons": {
"default": "images/service-logo.png"
},
"categories": [
"Azure Pipelines"
],
"tags": [
"monitoring",
"datadog",
"events",
"dashboard",
"alert"
],
"content": {
"details": {
"path": "overview.md"
}
},
"links": {
"home": {
"uri": "https://www.datadoghq.com/product/ci-cd-monitoring/"
},
"getstarted": {
"uri": "https://docs.datadoghq.com/continuous_integration/pipelines/azure/"
},
"learn": {
"uri": "https://docs.datadoghq.com"
},
"support": {
"uri": "https://www.datadoghq.com/support"
},
"privacypolicy": {
"uri": "https://www.datadoghq.com/legal/privacy"
},
"license": {
"uri": "https://www.datadoghq.com/legal/msa"
},
"repository": {
"uri": "https://github.com/DataDog/ci-visibility-azure-pipelines"
}
},
"repository": {
"type": "git",
"uri": "https://github.com/DataDog/ci-visibility-azure-pipelines"
},
"branding": {
"color": "rgb(120, 71, 166)",
"theme": "dark"
},
"contributions": [
{
"id": "consumer",
"type": "ms.vss-servicehooks.consumer",
"targets": [
"ms.vss-servicehooks.consumers"
],
"properties": {
"id": "datadog-ci-visibility",
"name": "Datadog CI Visibility",
"description": "Datadog CI Visibility",
"informationUrl": "https://www.datadoghq.com/product/ci-cd-monitoring/",
"inputDescriptors": [
{
"id": "datadog_site",
"name": "Datadog Site",
"description": "Datadog Site to send data to",
"inputMode": "textbox",
"values": {
"defaultValue": "datadoghq.com"
},
"validation": {
"dataType": "string",
"isRequired": true
}
},
{
"id": "api_key",
"isRequired": true,
"name": "Datadog API Key",
"description": "Datadog API Key",
"inputMode": "passwordBox",
"isConfidential": true,
"validation": {
"dataType": "string",
"isRequired": true,
"minLength": 32
}
}
],
"actions": [
{
"id": "performAction",
"name": "Send data to Datadog",
"description": "Send data to Datadog CI Visibility",
"supportedEventTypes": [
"ms.vss-pipelines.run-state-changed-event",
"ms.vss-pipelines.stage-state-changed-event",
"ms.vss-pipelines.job-state-changed-event",
"ms.vss-pipelinechecks-events.approval-pending",
"ms.vss-pipelinechecks-events.approval-completed",
"build.complete"
],
"publishEvent": {
"url": "https://webhook-intake.{{datadog_site}}/api/v2/webhook",
"headers": [
"DD-API-KEY:{{api_key}}",
"DD-CI-PROVIDER-AZURE:true"
],
"resourceDetailsToSend": "all",
"messagesToSend": "all",
"detailedMessagesToSend": "all"
}
}
]
}
}
]
}