diff --git a/cluster/gce/windows/k8s-node-setup.psm1 b/cluster/gce/windows/k8s-node-setup.psm1
index 9e14bb2fad0..061d848025c 100644
--- a/cluster/gce/windows/k8s-node-setup.psm1
+++ b/cluster/gce/windows/k8s-node-setup.psm1
@@ -1492,7 +1492,7 @@ function Install_Containerd {
# Register and start containerd service.
function Start_Containerd {
Log-Output "Creating containerd service"
- containerd.exe --register-service
+ containerd.exe --register-service --log-file ${env:LOGS_DIR}/containerd.log
Log-Output "Starting containerd service"
Start-Service containerd
}
@@ -1712,6 +1712,20 @@ $FLUENTD_CONFIG = @'
tag kube-proxy
+# Example:
+# time="2019-12-10T21:27:59.836946700Z" level=info msg="loading plugin \"io.containerd.grpc.v1.cri\"..." type=io.containerd.grpc.v1
+
+ @type tail
+ format multiline
+ multiline_flush_interval 5s
+ format_firstline /^time=/
+ format1 /^time="(?
+
@type record_reformer
enable_ruby true