#!/bin/bash -eu
#
# Utility to grab the health of the cluster via the _cat APIs.
#
source es_util_env

if [ "${NODATE:-false}" = false ] ; then
    date
fi
es_util --query="_cat/health?v"
