kolla-ansible/tests/check-logs.sh
Mark Goddard a14eee24d1 Check for CRITICAL, WARNING and ERROR log messages in CI
At the end of a CI run, check all log files.

Change-Id: I99afc1c5207757e35beabf7daebd86c56151c96d
2019-08-16 15:33:54 +00:00

36 lines
933 B
Bash
Executable File

#!/bin/bash
# Check for CRITICAL, ERROR or WARNING messages in log files.
set -o errexit
# Enable unbuffered output for Ansible in Jenkins.
export PYTHONUNBUFFERED=1
for level in CRITICAL ERROR WARNING; do
all_file=/tmp/logs/kolla/all-${level}.log
any_matched=0
any_critical=0
echo "Checking for $level log messages"
for f in $(sudo find /var/log/kolla/ -type f); do
if sudo egrep "^.* .* .* $level" $f >/dev/null; then
any_matched=1
if [[ $level = CRITICAL ]]; then
any_critical=1
fi
echo $f >> $all_file
sudo egrep "^.* .* .* $level" $f >> $all_file
echo >> $all_file
fi
done
if [[ $any_matched -eq 1 ]]; then
echo "Found some $level log messages. Matches in $all_file"
fi
done
if [[ $any_critical -eq 1 ]]; then
echo "Found critical log messages - failing job."
exit 1
fi