%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/extensions/Elastica/vendor/ruflin/elastica/ |
| Current File : //www/varak.net/wiki.varak.net/extensions/Elastica/vendor/ruflin/elastica/docker-entrypoint.sh |
#!/bin/bash
set -e
# This script is the entrypoint to the libbeat Docker container. This will
# verify that the Elasticsearch and Redis environment variables are set
# and that Elasticsearch is running before executing the command provided
# to the docker container.
# Read parameters from the environment and validate them.
checkHost() {
if [ -z "$$1" ]; then
echo >&2 'Error: missing required $1 environment variable'
echo >&2 ' Did you forget to -e $1=... ?'
exit 1
fi
}
readParams() {
checkHost "ES_HOST"
# Use default ports if not specified.
: ${ES_PORT:=9200}
}
# Wait for elasticsearch to start. It requires that the status be either
# green or yellow.
waitForElasticsearch() {
echo -n "Waiting on elasticsearch(${ES_HOST}:${ES_PORT}) to start."
for ((i=1;i<=30;i++))
do
health=$(curl --silent "http://${ES_HOST}:${ES_PORT}/_cat/health" | awk '{print $4}')
if [[ "$health" == "green" ]] || [[ "$health" == "yellow" ]]
then
echo
echo "Elasticsearch is ready!"
return 0
fi
((i++))
echo -n '.'
sleep 1
done
echo
echo >&2 'Elasticsearch is not running or is not healthy.'
echo >&2 "Address: ${ES_HOST}:${ES_PORT}"
echo >&2 "$health"
exit 1
}
# Main
readParams
waitForElasticsearch
exec "$@"