docker-zabbix
docker-zabbix copied to clipboard
Add a way to set the Timezone
Hi everyone,
"out-of-the-box", zabbix (and it's incident alarms) use UTC timezone. I live in CET (UTC+1 or +2 when daylight saving) and had to implement the following workarrount to have Zabbix run in "my" Timezone:
- Set Environment Variable "ZABBIX_TZ" when starting Docker container
- Mount a folder, containing the following script (
set_tz_to_CET.sh
):
#!/bin/bash
if [ ! -L /etc/localtime ] && [ ! -z "${ZABBIX_TZ}" ]; then
ln -sf /usr/share/zoneinfo/${ZABBIX_TZ} /etc/localtime
sed -i'' "s#UTC#${ZABBIX_TZ}#g" /etc/httpd/conf.d/zabbix.conf
monit restart httpd
fi
- Add the following file to
/etc/monit.d/timezone
:
check program timezone
with path /helper_scripts/set_tz_to_CET.sh
every "* * * * *"
It would be very more comfortable if such a "TZ Select by Env" would be implemented in the image without such Foo necessary.
PS: It is also necessary to remove the overriding php.value
line from /etc/httpd/conf.d/zabbix.conf
and restart httpd afterwards. I added this to the script above.
@The-Judge makes sense. I think we could add the contents of the script set_tz_to_CET.sh
to [scripts/entrypoint.sh]. If we execute the contents of that script as we start the service through monit we don't need to add /etc/monit.d/timezone
do we?
Hey berngp,
that's right. The only reason for that kind of awkward monit-workarround is that I did not want to mess up with your entrypoint - script. If you would adopt that, this would be great.
@The-Judge I don't see why we shouldn't. We can support ZABBIX_TZ
as en env variable and zabbix-tz
as an option for the entrypoint script.