Skip to content
Snippets Groups Projects
Commit 65330446 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Add haproxy stats to gate logs"

parents af0347ac 3f01c7c7
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,12 @@ copy_logs() { ...@@ -56,6 +56,12 @@ copy_logs() {
docker exec bifrost_deploy journalctl -u rabbitmq-server > ${LOG_DIR}/kolla/rabbitmq-server/rabbitmq.txt docker exec bifrost_deploy journalctl -u rabbitmq-server > ${LOG_DIR}/kolla/rabbitmq-server/rabbitmq.txt
fi 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 for container in $(docker ps -a --format "{{.Names}}"); do
docker logs --tail all ${container} &> ${LOG_DIR}/docker_logs/${container}.txt docker logs --tail all ${container} &> ${LOG_DIR}/docker_logs/${container}.txt
done done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment