-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.config.json
57 lines (57 loc) · 1.04 KB
/
example.config.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
{
"updateInterval": 30000,
"fadeTime": 50,
"perSlotDuration": 100,
"slots": [
{
"id": "EXAMPLE1",
"refs": [
"JENKINS-EXAMPLE",
"SONAR_EXAMPLE",
"JENKINS-EXAMPLE",
"SONAR_EXAMPLE"
]
},
{
"id": "EXAMPLE2",
"refs": [
"JENKINS-EXAMPLE2"
]
}
],
"jenkins": {
"connections": [
{
"id": "jenkins1",
"baseUrl": "https://<user>:<token>@example.com/jenkins"
}
],
"jobs": [
{
"id": "JENKINS-EXAMPLE",
"jobName": "view/GROUP/job/EXAMPLE_JOB",
"connectionRef": "jenkins1"
},
{
"id": "JENKINS-EXAMPLE2",
"jobName": "/job/EXAMPLE_JOB_2",
"connectionRef": "jenkins1"
}
]
},
"sonar": {
"connections": [
{
"id": "sonar1",
"baseUrl": "https://<token>:@example.com/sonarqube"
}
],
"jobs": [
{
"id": "SONAR_EXAMPLE",
"projectKey": "com.example:project",
"connectionRef": "sonar1"
}
]
}
}