YES, it less happens from 5:00 to 11:00 (UTC+8), ie, 21:00 - 3:00 (UTC).
And it happens 3-4 times in the every hours from 11:00 (UTC+8) to 4:30 (UTC+8 next day), ie, from 3:00 (UTC) to 20:30 (UTC).
Tue Apr 6 04:17:20 UTC+8 2021, Record "cloud" disappeared
Tue Apr 6 04:31:25 UTC+8 2021, Record "cloud" disappeared
Tue Apr 6 11:16:03 UTC+8 2021, Record "cloud" disappeared
Tue Apr 6 11:31:22 UTC+8 2021, Record "cloud" disappeared
I check it every 30-150 seconds by API as you posted.
sleep $(($RANDOM%120+30 )) # random sleep 30-150 s
TOKEN=4qwetyuiuioppasdfghjk # your TOKEN
ZONEID=12345 # your ZONEID
NAME=cloud
N_find=`curl -sS --fail -H "Authorization: Bearer $TOKEN" -H "Accept: application/json" https://dynv6.com/api/v2/zones/$ZONEID/records | jq '.[] | select (.type == "A") | select (.name == "'$NAME'") | .name ' |wc -l`
if [ "$N_find" -eq "0" ] ;
then
echo Record \"$NAME\" disappeared, `date` >> logfile.log
fi
By the way, Iâm wondering about whether there is a virus or autoclean-script on the dynv6 server.