mirror of
https://github.com/byReqz/status.git
synced 2024-11-21 15:23:15 +00:00
finish basic functions
This commit is contained in:
parent
364e5c063e
commit
c3c39ff446
43
status.sh
43
status.sh
@ -1,23 +1,48 @@
|
|||||||
#!/bin/env bash
|
#!/bin/env bash
|
||||||
|
|
||||||
if [[ -z "$ping_hosts" ]];then
|
if [[ -z "$ping_hosts" ]];then
|
||||||
ping_hosts="nils.lol"
|
ping_hosts=("nils.lol")
|
||||||
|
else
|
||||||
|
ping_hosts=($ping_hosts)
|
||||||
fi
|
fi
|
||||||
if [[ -z "$http_hosts" ]];then
|
if [[ -z "$http_hosts" ]];then
|
||||||
http_hosts="https://nils.lol"
|
http_hosts=("https://nils.lol")
|
||||||
|
else
|
||||||
|
http_hosts=($http_hosts)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
function get_code {
|
function get_code {
|
||||||
http_results="$(curl -s -I $http_hosts | grep HTTP | cut -d " " -f 2)"
|
http_raw="$(curl -s -I $h | tr -d '\r')"
|
||||||
|
http_code="[$(echo "$http_raw" | grep HTTP | cut -d " " -f 2)"
|
||||||
|
http_server=" | $(echo "$http_raw" | grep Server: | cut -d " " -f 2)]"
|
||||||
|
http_results=""$http_results"
|
||||||
|
$(printf "%-50s%s\n" ["$h"] "$http_code""$http_server")"
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_ping {
|
function get_ping {
|
||||||
ping_raw="$(fping -e "$ping_hosts")"
|
ping_raw="$(fping -e "$p" 2> /dev/null)"
|
||||||
ping_reach="$(echo "$ping_raw" | grep -o -e "alive" -e "unreachable")"
|
ping_reach="$(echo "$ping_raw" | grep -o -e "alive" -e "unreachable")"
|
||||||
ping_ms="$(echo "$ping_raw" | cut -d "(" -f 2 | cut -d ")" -f 1)"
|
if [[ "$ping_reach" == "unreachable" ]];then
|
||||||
ping_results="$ping_reach / $ping_ms"
|
ping_reach="[unreachable]"
|
||||||
|
elif [[ "$ping_reach" == "alive" ]];then
|
||||||
|
ping_reach="[alive"
|
||||||
|
ping_ms=" | $(echo "$ping_raw" | cut -d "(" -f 2 | cut -d ")" -f 1)]"
|
||||||
|
else
|
||||||
|
ping_reach="[error]"
|
||||||
|
fi
|
||||||
|
ping_results=""$ping_results"
|
||||||
|
$(printf "%-50s%s\n" ["$p]" "$ping_reach""$ping_ms")"
|
||||||
}
|
}
|
||||||
|
|
||||||
get_code
|
if [[ "$ping_hosts" != "none" ]];then
|
||||||
get_ping
|
for p in "${ping_hosts[@]}";do
|
||||||
echo "$http_results $ping_results"
|
get_ping
|
||||||
|
done
|
||||||
|
echo "$ping_results"
|
||||||
|
fi
|
||||||
|
if [[ "$http_hosts" != "none" ]];then
|
||||||
|
for h in "${http_hosts[@]}";do
|
||||||
|
get_code
|
||||||
|
done
|
||||||
|
echo "$http_results"
|
||||||
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user