diff options
author | anweshadas <anwesha@das.community> | 2022-05-06 15:33:20 +0200 |
---|---|---|
committer | anweshadas <anwesha@das.community> | 2022-05-06 15:33:20 +0200 |
commit | 848a1ad7ebb7a0da65724d56a66a272053619e2d (patch) | |
tree | a5b5a7d7d3f0dbe007999493cc7db0c4b9c64225 | |
parent | ab44c6b0722da0a0532377297066f98ab75eccfc (diff) |
Adds dig command
-rw-r--r-- | monitor.sh | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,11 +4,15 @@ links=("https://poc.sigsum.org/crocodile-icefish/sigsum/v0/get-tree-head-cosigne for url in ${links[@]}; do -echo $url +echo $url #this is for testing purpose. To be removed in thhe final code. response=$(curl -s -w "%{http_code}" $url) http_code=$(tail -n1 <<< "$response") if [[ "$http_code" != 200 ]]; then - echo $url is down. status_code $http_code + echo Fatal. $url is down. status_code $http_code + domain_name=$(echo $url | awk -F[/:] '{print $4}') + echo domain=$domain_name + dig_response=$(dig $domain_name) + echo $dig_response #this is for testing purpose. To be removed in thhe final code. else echo $url is working. status_code $http_code fi |