From 6513755670892983db88a6633b8c1ea6019c03d1 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Fri, 15 Nov 2024 14:55:37 -0500 Subject: Re-namespace some stuff to Omni I was getting confused about what is a product and what is internal infrastructure; I think it is good to keep those things separate. So I moved a bunch of stuff to an Omni namespace, actually most stuff went there. Only things that are explicitly external products are still in the Biz namespace. --- Biz/Sentry.sh | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 Biz/Sentry.sh (limited to 'Biz/Sentry.sh') diff --git a/Biz/Sentry.sh b/Biz/Sentry.sh deleted file mode 100755 index 5c9e0ac..0000000 --- a/Biz/Sentry.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -# -# monitors our infrastructure -# -# -# color codes for use with printf - export RED='\033[0;31m' - export GRN='\033[0;32m' - export YEL='\033[0;33m' - export NC='\033[0m' # No Color -# - while true - do - clear - printf "%s sentry\n\n" "$(date +%Y.%m.%d..%H.%M)" - urls=( - http://que.run - https://dragons.dev - https://simatime.com - https://tv.simatime.com - https://bsima.me - # https://herocomics.app - ) - for url in "${urls[@]}" - do - code=$(curl -L --max-time 10 --silent --show-error --insecure \ - --output /dev/null \ - --write-out "%{http_code}" "$url") - case "$code" in - 2[0-9][0-9]) color=${GRN};; - 3[0-9][0-9]) color=${YEL};; - 4[0-9][0-9]) color=${YEL};; - 5[0-9][0-9]) color=${RED};; - *) color=${RED};; - esac - printf "%b%s %s%b\n" "$color" "$code" "$url" "$NC" - done - sleep 120 - done -## -- cgit v1.2.3