Compare commits
2 Commits
050ba916ba
...
540ad83ef8
Author | SHA1 | Date | |
---|---|---|---|
540ad83ef8 | |||
05220c207a |
@ -91,6 +91,9 @@ url=''
|
||||
GetOptions "$@"
|
||||
|
||||
eval $(curl -L -o /dev/null -s -w 'RESPONSE_CODE=%{response_code}\nRESPONSE_TIME=%{time_total}\nDNS_TIME=%{time_namelookup}\nCONNECT_TIME=%{time_connect}' ${proxy:+"--proxy" "$proxy"} $url)
|
||||
response_time=$(printf %.3f $(echo ${RESPONSE_TIME}))
|
||||
dns_time=$(printf %.3f $(echo ${DNS_TIME}))
|
||||
connect_time=$(printf %.3f $(echo ${CONNECT_TIME}))
|
||||
rdetail=""
|
||||
if (( $(echo "$RESPONSE_CODE != 200" | bc -l) )); then
|
||||
rval=2
|
||||
@ -107,5 +110,5 @@ else
|
||||
rmsg="CRITICAL"
|
||||
fi
|
||||
unit='s'
|
||||
echo "URL ${rmsg} - ${rdetail:+"$rdetail - "}Response code: ${RESPONSE_CODE} Response Time: ${RESPONSE_TIME} DNS Lookup time: ${DNS_TIME} Connect time: ${CONNECT_TIME}|response=${RESPONSE_TIME}${unit} dns-query=${DNS_TIME}${unit} connect=${CONNECT_TIME}${unit}"
|
||||
echo "URL ${rmsg} - ${rdetail:+"$rdetail - "}Response code: ${RESPONSE_CODE} Response Time: ${response_time} DNS Lookup time: ${dns_time} Connect time: ${connect_time}|response=${response_time}${unit} dns-query=${dns_time}${unit} connect=${connect_time}${unit}"
|
||||
exit $rval
|
||||
|
@ -102,8 +102,7 @@ jobsdue=$(echo $health | jq '.JobsDue')
|
||||
jobsrunning=$(echo $health | jq '.JobsRunning')
|
||||
jobsfailing=$(echo $health | jq '.JobsFailing')
|
||||
|
||||
val=$(echo "$jobsfailing/$jobstotal" | bc -l)
|
||||
|
||||
val=$(printf %.3f $(echo "$jobsfailing/$jobstotal" | bc -l))
|
||||
rdetail=""
|
||||
if (( $(echo "$RESPONSE_CODE != 200" | bc -l) )); then
|
||||
rval=2
|
||||
|
Loading…
Reference in New Issue
Block a user