health_check.sh will fail to check the publish uri.
Per the lines below:
if [[ ! -z "${http_bind_address}" ]]
then
check_url="${proto}"://"${http_bind_address}"
elif [[ ! -z "${http_publish_uri}" ]]
then
check_url="${proto}"://"${http_publish_uri}"
else
echo "not possible to get Graylog listen URI - abort"
exit 1
fi
health_check.sh will fail to check the publish uri.
Per the lines below: if [[ ! -z "${http_bind_address}" ]] then check_url="${proto}"://"${http_bind_address}" elif [[ ! -z "${http_publish_uri}" ]] then check_url="${proto}"://"${http_publish_uri}" else echo "not possible to get Graylog listen URI - abort" exit 1 fi