Details
-
Incident report
-
Status: Closed
-
Trivial
-
Resolution: Won't fix
-
6.0.0beta1
-
None
Description
I'm running Zabbix 6.0.0beta on docker environment.
As suggested on official documentation, I added on docker compose a container healthcheck for zabbix web component that checks every 10 seconds if it's online accessing its HTTP port:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/"]
interval: 10s
timeout: 5s
retries: 3
start_period: 30s
Log generated by zabbix web server every 10 seconds caused by healthcheck process:
zabbix-web | 127.0.0.1 - - [29/Dec/2021:10:54:01 -0300] "GET / HTTP/1.1" 200 3931 "
" "curl/7.68.0" ""
Zabbix 6 has completely redesigned Audit module, ** and since then I noticed the logs below are being recorded for user guest every 10 seconds. The reason for these logs is the healthcheck routine on docker compose. If I remove the healthcheck from docker compose, the logs won't be recorded anymore.{}
I'd like to suggest a way to avoid these kind of logs from being recorded.