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
|
{
"service": {
"name": "Health Check: MSB",
"checks": [
{
"id": "msb-eag",
"name": "MSB eag Health Check",
"http": "http://msb-eag:80/iui/microservices/default.html",
"method": "HEAD",
"tls_skip_verify": true,
"interval": "15s",
"timeout": "1s"
},
{
"id": "msb-iag",
"name": "MSB iag Health Check",
"http": "http://msb-iag:80/iui/microservices/default.html",
"method": "HEAD",
"tls_skip_verify": true,
"interval": "15s",
"timeout": "1s"
},
{
"id": "msb-consul",
"name": "MSB consul Health Check",
"tcp": "msb-consul:8500",
"interval": "15s",
"timeout": "1s"
},
{
"id": "msb-discovery",
"name": "MSB discovery Health Check",
"tcp": "msb-discovery:10081",
"interval": "15s",
"timeout": "1s"
}
]
}
}
|