DO288-apps/nexus3/probes/liveness.sh
2019-08-04 08:26:17 -04:00

13 lines
276 B
Bash

#!/bin/sh
curl -siu admin:admin123 http://localhost:8081/service/metrics/healthcheck | grep healthy | grep true
RESPONSE=$?
if [ "$RESPONSE" = "0" ] ; then
echo "******** liveness is Alive ********"
exit 0;
else
echo "******** liveness is Dead ********"
exit 1;
fi