blob: 4e3664ba7318a9e87b0cedaa3d78df5960b0de93 [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 FE) and check to see if
7## the FE component is reported as up.
8READY=$(echo "$HEALTH_CHECK_RESPONSE" | sed '/ON_BOARDING/,/]/d' | grep -A 1 "FE" | 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