From fb7e426ef6e42f096ef0ea0505051132a3eac3ff Mon Sep 17 00:00:00 2001 From: anweshadas Date: Wed, 11 May 2022 07:29:51 +0200 Subject: Adds the fail function --- scripts/monitor.sh | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/scripts/monitor.sh b/scripts/monitor.sh index 264101c..7fdf44a 100644 --- a/scripts/monitor.sh +++ b/scripts/monitor.sh @@ -87,16 +87,16 @@ function check_add_leaf() { cat $log_dir/req | curl -s -w "%{http_code}" --data-binary @- $log_url/add-leaf \ >$log_dir/rsp + status_code=$(tail -n1 < $log_dir/rsp) - api=add_leaf + api=$log_url/add-leaf + if [ $status_code == 202 ]; then msg="Info: $api request is Accepted with status_code $http_code" - echo $msg #| mail -s "Info: $api Accepted" anwesha@verkligendata.se - # Acceptance Message + echo $msg elif [ $status_code != 200 ]; then - msg="Warning: $api is down with status_code $status_code" - echo $msg #| mail -s "Warning: $api is down" anwesha@verkligendata.se - # Failure message + msg="$(date +"%y-%m-%d %H:%M:%S %Z") Warning:$api is down with status_code $status_code" # Failure message + fail "$msg" # calling the fail function return fi @@ -138,15 +138,17 @@ function check_add_cosignature() { cat $log_dir/req | curl -s -w "%{http_code}" --data-binary @- $log_url/add-cosignature \ >$log_dir/rsp - - status_code=$(tail -n1 < $log_dir/rsp) - if [ "$status_code" != 200 ]; then - msg="Warning: $log_url/add-cosignature is down. status_code $status_code" - echo $msg #| mail -s "Warning: $domain_name is down" anwesha@verkligendata.se - else - echo $log_url/add-cosignature is working. status_code $status_code - return - fi + status_code=$(tail -n1 < $log_dir/rsp) + api=$log_url/add-cosignature + + if [ "$status_code" != 200 ]; then + msg="$(date +"%y-%m-%d %H:%M:%S %Z") Warning:$api is down with status_code $status_code" + fail "$msg" + else + msg="Success: $api is working with status_code $status_code." + echo "$msg" + return + fi pass $desc } @@ -164,7 +166,7 @@ function pass() { } function fail() { - echo -e "\e[37m$(date +"%y-%m-%d %H:%M:%S %Z")\e[0m [\e[91mFAIL\e[0m] $@" >&2 + echo $1 | mail -s "Warning: $api is down" anwesha@verkligendata.se } function keys() { -- cgit v1.2.3