Hi,
I had issue on Zabbix 7.0 with server and proxies logs spammed by "sending configuration data to proxy...". The same thing as this post : https://www.zabbix.com/forum/zabbix-...to-all-proxies
So I was happy when the 7.0.5 released this fix : https://support.zabbix.com/browse/ZBXNEXT-9397
I tested it on our test server, upgrade from Zabbix 7.0.4 to 7.0.5, based on MariaDB 10.11. And it's work perfectly, no more logs, only when config changes are made so proxy config update is required.
But when our production server based on PostgreSQL 16.5 + TimescaleDB 2.17.2 was upgraded, the proxies still get their configuration updated every 10 seconds (As defined in config file) even if no change was made.
I created a third server (clone of the production one), so it's not a full fresh server install but on this server i created a new database on the same PGSQL server, imported the schema from zabbix scripts. Added a single proxy via the WebUI, no host assigned to it. This is working fine, no proxy config update when it's not required.
When I enable TimescaleDB with these commands :
The proxies config sending comme back and logs are spammed again.
When I disable timescale with :
It's stop instantly sending config.
Is something wrong in my setup ? Or is this a bug ?
Regards,
I had issue on Zabbix 7.0 with server and proxies logs spammed by "sending configuration data to proxy...". The same thing as this post : https://www.zabbix.com/forum/zabbix-...to-all-proxies
So I was happy when the 7.0.5 released this fix : https://support.zabbix.com/browse/ZBXNEXT-9397
I tested it on our test server, upgrade from Zabbix 7.0.4 to 7.0.5, based on MariaDB 10.11. And it's work perfectly, no more logs, only when config changes are made so proxy config update is required.
But when our production server based on PostgreSQL 16.5 + TimescaleDB 2.17.2 was upgraded, the proxies still get their configuration updated every 10 seconds (As defined in config file) even if no change was made.
I created a third server (clone of the production one), so it's not a full fresh server install but on this server i created a new database on the same PGSQL server, imported the schema from zabbix scripts. Added a single proxy via the WebUI, no host assigned to it. This is working fine, no proxy config update when it's not required.
When I enable TimescaleDB with these commands :
Code:
echo "CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;" | sudo -u postgres psql zabbix cat /usr/share/zabbix-sql-scripts/postgresql/timescaledb/schema.sql | sudo -u zabbix psql zabbix
When I disable timescale with :
Code:
update config set db_extension=''";
Is something wrong in my setup ? Or is this a bug ?
Regards,
Comment