-
Hi, is there anyway I can disable container health checks? I know how to do that with master container it works but all other containers created by master container have health checks thus the logs building up my syslog. I could not figure it out how. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 13 replies
-
This is not possible, the only option would be to use manual-install. |
Beta Was this translation helpful? Give feedback.
-
I wonder which container exactly is producing the logs? We are using nc for almost all healthcheck and that should not produce any logs, no? |
Beta Was this translation helpful? Give feedback.
-
fantastic! if $msg contains "run-docker-runtime" and $msg contains ".mount: Succeeded." then { this worked, the other option in systemd with conf didn't work. Thanks a lot! |
Beta Was this translation helpful? Give feedback.
fantastic!
I created a new file /etc/rsyslog.d/01-blocklist.conf, containing:
if $msg contains "run-docker-runtime" and $msg contains ".mount: Succeeded." then {
stop
}
this worked, the other option in systemd with conf didn't work. Thanks a lot!