DO288-apps/nexus3/probes/readiness.sh
2019-05-23 13:13:16 -04:00

13 lines
256 B
Bash

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