-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard-config.json
More file actions
41 lines (41 loc) · 1.08 KB
/
dashboard-config.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"Dashboard": {
"environments": [
"DEV",
"UAT",
"PROD"
],
"services": [
{
"name": "Payment API",
"environment": "DEV",
"healthCheckUrl": "http://sample-service-dev:8080/healthz",
"description": "Payment service in development",
"enabled": true
},
{
"name": "Payment API",
"environment": "UAT",
"healthCheckUrl": "http://sample-service-uat:8080/healthz",
"description": "Payment service in UAT",
"enabled": true
},
{
"name": "Payment API",
"environment": "PROD",
"healthCheckUrl": "http://sample-service-prod:8080/healthz",
"description": "Payment service in production",
"enabled": true
},
{
"name": "User API",
"environment": "DEV",
"healthCheckUrl": "http://user-service-dev:8080/healthz",
"description": "User service in development",
"enabled": true
}
],
"refreshIntervalSeconds": 15,
"timeoutSeconds": 5
}
}