Skip to content

Commit

Permalink
ovn-central: check raft inconsistency from nb/sb logs
Browse files Browse the repository at this point in the history
Signed-off-by: zhangzujian <[email protected]>
  • Loading branch information
zhangzujian committed Dec 15, 2023
1 parent a8ee70b commit 8b7ffab
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions dist/images/ovn-healthcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,18 @@ if echo ${sb_status} | grep "disconnected" && echo ${sb_role} | grep "candidate"
echo "sb health check failed"
exit 1
fi

# check nb/sb log file
function check_log_file() {
local log_file="/var/log/ovn/ovsdb-server-$1.log"
if [ -e $file ]; then
logs=$(tail -n 6 $log_file 2>/dev/null || true)
if echo $logs | grep 'does not match prerequisite' ; then
echo "raft inconsistency in $1 db was detected, please check $log_file for more details."
return 1
fi
fi
}

check_log_file nb
check_log_file sb

0 comments on commit 8b7ffab

Please sign in to comment.