forked from spinnaker/kayenta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatlas_pipeline.json
73 lines (71 loc) · 1.97 KB
/
atlas_pipeline.json
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
{
"application": "kayentatest",
"executionEngine": "v3",
"keepWaitingPipelines": false,
"lastModifiedBy": "anonymous",
"limitConcurrent": true,
"name": "TestFetchFromAtlas",
"parallel": true,
"stages": [
{
"name": "Fetch Baseline from Atlas",
"refId": "1",
"requisiteStageRefIds": [
],
"type": "atlasFetch",
"user": "[anonymous]",
"metricsAccountName": "atlas-acct-1",
"storageAccountName": "my-account-name-1",
"canaryConfigId": "MySampleAtlasCanaryConfig",
"atlasCanaryScope": {
"type": "node",
"scope": "duftler-mac",
"start": "1496436680000",
"end": "now",
"step": "PT10S"
}
},
{
"name": "Fetch Canary from Atlas",
"refId": "2",
"requisiteStageRefIds": [
],
"type": "atlasFetch",
"user": "[anonymous]",
"metricsAccountName": "atlas-acct-1",
"storageAccountName": "my-account-name-1",
"canaryConfigId": "MySampleAtlasCanaryConfig",
"atlasCanaryScope": {
"type": "node",
"scope": "duftler-mac",
"start": "1496436680000",
"end": "now",
"step": "PT10S"
}
},
{
"name": "Mix Baseline and Canary Results",
"refId": "3",
"requisiteStageRefIds": [
"1",
"2"
],
"type": "metricSetMixer",
"user": "[anonymous]",
"storageAccountName": "my-account-name-1",
"controlMetricSetListIds": "${ #stage('Fetch Baseline from Atlas')['context']['metricSetListIds']}",
"experimentMetricSetListIds": "${ #stage('Fetch Canary from Atlas')['context']['metricSetListIds']}"
},
{
"name": "Perform Analysis",
"refId": "4",
"requisiteStageRefIds": [
"3"
],
"type": "canaryJudge",
"user": "[anonymous]",
"canaryConfigId": "MySampleAtlasCanaryConfig",
"metricSetPairListId": "${ #stage('Mix Baseline and Canary Results')['context']['metricSetPairListId']}"
}
]
}