Add haproxy stats to gate logs

Change-Id: Iebd98acf03418817d3707c4a117771b73da80166
This commit is contained in:
Michal Nasiadka 2019-02-21 11:03:42 +01:00
parent 4a127d4bd9
commit 3f01c7c7cd
1 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,12 @@ copy_logs() {
docker exec bifrost_deploy journalctl -u rabbitmq-server > ${LOG_DIR}/kolla/rabbitmq-server/rabbitmq.txt
fi
# haproxy related logs
if [[ $(docker ps --filter name=haproxy --format "{{.Names}}") ]]; then
mkdir -p ${LOG_DIR}/kolla/haproxy
docker exec haproxy bash -c 'echo show stat | socat stdio /var/lib/kolla/haproxy/haproxy.sock' > ${LOG_DIR}/kolla/haproxy/stats.txt
fi
for container in $(docker ps -a --format "{{.Names}}"); do
docker logs --tail all ${container} &> ${LOG_DIR}/docker_logs/${container}.txt
done