15 lines
382 B
Bash
Executable File
15 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
set -eo pipefail
|
|
|
|
host="$(hostname --ip-address || echo '127.0.0.1')"
|
|
|
|
if health="$(curl -fsSL "http://$host:9200/_cat/health?h=status")"; then
|
|
health="$(echo "$health" | sed -r 's/^[[:space:]]+|[[:space:]]+$//g')" # trim whitespace (otherwise we'll have "green ")
|
|
if [ "$health" = 'green' ]; then
|
|
exit 0
|
|
fi
|
|
echo >&2 "unexpected health status: $health"
|
|
fi
|
|
|
|
exit 1
|