summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoranweshadas <anwesha@das.community>2022-05-11 07:29:51 +0200
committeranweshadas <anwesha@das.community>2022-05-11 07:29:51 +0200
commitfb7e426ef6e42f096ef0ea0505051132a3eac3ff (patch)
treeeb7a1f072a39cf68285a5a26eb217c94601a66d7
parent0a931dbcff5bdca7f6ad9d8d96de496b29593e89 (diff)
Adds the fail function
-rw-r--r--scripts/monitor.sh34
1 files 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() {