-
Notifications
You must be signed in to change notification settings - Fork 22
/
chkhealth.sh
executable file
·61 lines (51 loc) · 1.34 KB
/
chkhealth.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
# Optional argument to specify the ip address
ip_address="localhost:8645"
plain_text_out=false
# Parse command line arguments
POSITIONAL_ARGS=()
while [[ $# -gt 0 ]]; do
case $1 in
-p|--plain)
plain_text_out=true
shift # past argument
;;
-*|--*)
echo "Unknown option $1"
exit 1
;;
*)
POSITIONAL_ARGS+=("$1") # save positional arg
shift # past argument
;;
esac
done
set -- "${POSITIONAL_ARGS[@]}" # restore positional parameters
# Check if an IP address is provided as an argument
if [[ -n "$1" ]]; then
ip_address="$1"
fi
# Check if curl is available
if ! command -v curl &> /dev/null
then
echo "curl could not be found"
exit 1
fi
response=$(curl --connect-timeout 6 -s GET http://${ip_address}/health)
if [[ $? -ne 0 ]]; then
echo -e "$(date +'%H:%M:%S') - Node may not be running or not reachable at http://${ip_address}\n"
exit 1
fi
if [[ -z "${response}" ]]; then
echo -e "$(date +'%H:%M:%S') - node health status is: unknown\n"
exit 1
fi
if ! command -v jq &> /dev/null || [[ "$plain_text_out" = true ]]; then
echo -e "$(date +'%H:%M:%S') - node health status is: ${response}\n"
else
echo -e "$(date +'%H:%M:%S') - node health status is:\n"
echo "${response}" | jq . 2>/dev/null
if [[ $? -ne 0 ]]; then
echo -e "${response}"
fi
fi