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
|
{
"service": {
"name": "Health Check: MSO",
"checks": [
{
"id": "mso-api-healthcheck",
"name": "MSO API Health Check",
"script": "/consul/scripts/mso-api-script.sh",
"interval": "10s",
"timeout": "1s"
},
{
"id": "mso-camunda-healthcheck",
"name": "MSO Camunda Health Check",
"script": "/consul/scripts/mso-camunda-script.sh",
"interval": "10s",
"timeout": "1s"
},
{
"id": "mso-jra-healthcheck",
"name": "MSO JRA Health Check",
"script": "/consul/scripts/mso-jra-script.sh",
"interval": "10s",
"timeout": "1s"
}
]
}
}
|