blob: f007e62226dac14a0c50ec64f443752a9ebfdc0a [file] [log] [blame]
gfrabonid0769512017-09-22 15:31:48 -04001## Query the health check API.
Priyanka Jainc07e1d12018-05-03 12:52:04 +00002HEALTH_CHECK_ENDPOINT="http://sdc-fe:8181/sdc1/rest/healthCheck"
gfrabonid0769512017-09-22 15:31:48 -04003HEALTH_CHECK_RESPONSE=$(curl -s $HEALTH_CHECK_ENDPOINT)
4
5## Strip out the ON_BOARDING section from the response XML (otherwise we will
6## get duplicate results when we search for component BE) and check to see if
7## the BE component is reported as up.
8READY=$(echo "$HEALTH_CHECK_RESPONSE" | sed '/ON_BOARDING/,/]/d' | grep -A 1 "BE" | grep "UP")
9
10if [ -n $READY ]; then
11 echo "Query against health check endpoint: $HEALTH_CHECK_ENDPOINT"
12 echo "Produces response: $HEALTH_CHECK_RESPONSE"
13 echo "Application is not in an available state"
14 return 2
15else
16 echo "Application is available."
17 return 0
18fi