Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release-4.6] Bug 1896691: Collect docker logs from WinEvent log on Windows machines #197

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 14 additions & 3 deletions collection-scripts/gather_windows_node_logs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
BASE_COLLECTION_PATH="/must-gather"
WINDOWS_NODE_LOGS=$BASE_COLLECTION_PATH/host_service_logs/windows

# Services logging to WinEvent log
SERVICES=(docker)

# Logfile list
LOGS=(kube-proxy/kube-proxy.exe.INFO kube-proxy/kube-proxy.exe.ERROR kube-proxy/kube-proxy.exe.WARNING)
LOGS+=(hybrid-overlay/hybrid-overlay.log kubelet/kubelet.log)
Expand All @@ -12,11 +15,19 @@ if [ -z "$WIN_NODES" ]; then
exit 0
fi

PIDS=()
LOG_WINEVENT_DIR=${WINDOWS_NODE_LOGS}/log_winevent/
mkdir -p ${LOG_WINEVENT_DIR}
echo INFO: Collecting logs for all Windows nodes
for service in ${SERVICES[@]}; do
echo "INFO: Collecting WinEvent application logs for provider $service"
/usr/bin/oc adm node-logs -l kubernetes.io/os=windows -u $service > ${LOG_WINEVENT_DIR}/${service}_winevent.log &
PIDS+=($!)
done
for log in ${LOGS[@]}; do
LOG_DIR=${WINDOWS_NODE_LOGS}/$(dirname $log)
mkdir -p ${LOG_DIR}
/usr/bin/oc adm node-logs -l kubernetes.io/os=windows --path=$log > ${LOG_DIR}/$(basename $log) &
LOG_FILE_DIR=${WINDOWS_NODE_LOGS}/log_files/$(dirname $log)
mkdir -p ${LOG_FILE_DIR}
/usr/bin/oc adm node-logs -l kubernetes.io/os=windows --path=$log > ${LOG_FILE_DIR}/$(basename $log) &
PIDS+=($!)
done
wait ${PIDS[@]}
Expand Down