|
|
|
@ -1310,9 +1310,9 @@ get_watchdog_status_code_live() {
|
|
|
|
|
status="crashed"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
regex3='MIKR.US - coś poszło nie tak'
|
|
|
|
|
regex3='coś poszło nie tak'
|
|
|
|
|
if [[ "$html" =~ $regex3 ]]; then
|
|
|
|
|
status="restarting"
|
|
|
|
|
status="awaiting"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
@ -1321,7 +1321,7 @@ get_watchdog_status_code_live() {
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
if [ "$NS_STATUS" = "restarting" ] || [ "$DB_STATUS" = "restarting" ]; then
|
|
|
|
|
status="restarting"
|
|
|
|
|
status="awaiting"
|
|
|
|
|
else
|
|
|
|
|
status="not_running"
|
|
|
|
|
fi
|
|
|
|
@ -1339,9 +1339,15 @@ get_watchdog_status() {
|
|
|
|
|
"restart")
|
|
|
|
|
printf "\U1F680 wymuszono restart NS"
|
|
|
|
|
;;
|
|
|
|
|
"restarting")
|
|
|
|
|
"awaiting")
|
|
|
|
|
printf "\U23F3 uruchamia się"
|
|
|
|
|
;;
|
|
|
|
|
"restart_failed")
|
|
|
|
|
printf "\U1F680 restart NS to za mało"
|
|
|
|
|
;;
|
|
|
|
|
"full_restart")
|
|
|
|
|
printf "\U1F680 restart NS i DB"
|
|
|
|
|
;;
|
|
|
|
|
"unknown")
|
|
|
|
|
printf "\U1F4A4 brak statusu"
|
|
|
|
|
;;
|
|
|
|
@ -2152,18 +2158,31 @@ watchdog_check() {
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ "$html" =~ 'MongoDB connection failed' ]]; then
|
|
|
|
|
echo "Nightscout is crashed, restarting..."
|
|
|
|
|
echo "Nightscout crash detected"
|
|
|
|
|
WATCHDOG_STATUS="restart"
|
|
|
|
|
if [ "$WATCHDOG_LAST_STATUS" == "restart_failed" ]; then
|
|
|
|
|
echo "Restarting DB first..."
|
|
|
|
|
docker restart 'ns-database'
|
|
|
|
|
echo "Then, restarting Nightscout..."
|
|
|
|
|
docker restart 'ns-server'
|
|
|
|
|
echo "...done"
|
|
|
|
|
WATCHDOG_STATUS="full_restart"
|
|
|
|
|
else
|
|
|
|
|
if [ "$WATCHDOG_LAST_STATUS" != "restart" ]; then
|
|
|
|
|
echo "Restarting only Nightscout..."
|
|
|
|
|
docker restart 'ns-server'
|
|
|
|
|
echo "...done"
|
|
|
|
|
else
|
|
|
|
|
echo "Restart was tried but NS still crashed, will retry restart next time"
|
|
|
|
|
WATCHDOG_STATUS="restart_failed"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
regex3='MIKR.US - coś poszło nie tak'
|
|
|
|
|
else
|
|
|
|
|
regex3='coś poszło nie tak'
|
|
|
|
|
if [[ "$html" =~ $regex3 ]]; then
|
|
|
|
|
echo "Nightscout is still restarting..."
|
|
|
|
|
WATCHDOG_STATUS="restarting"
|
|
|
|
|
WATCHDOG_STATUS="awaiting"
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$WATCHDOG_STATUS" = "detection_failed" ]; then
|
|
|
|
@ -2183,7 +2202,7 @@ watchdog_check() {
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
if [ "$NS_STATUS" = "restarting" ] || [ "$DB_STATUS" = "restarting" ]; then
|
|
|
|
|
WATCHDOG_STATUS="restarting"
|
|
|
|
|
WATCHDOG_STATUS="awaiting"
|
|
|
|
|
else
|
|
|
|
|
WATCHDOG_STATUS="not_running"
|
|
|
|
|
fi
|
|
|
|
|