Hello,
I've a quiet huge setup with over 1000 hosts which are Windows client machines. I'm using Zabbix 5.4.
I automatically configure them to connect via TLS once they are auto-registered. Sometimes for various reasons the configuration fails or those hosts aren't physically available any longer, so I'm currently trying to remove clients which aren't available for some weeks. My approach is to check how long the main interface of a host is offline.
On the (active) proxy when I look into the database I can see the following:
But on the server the values for errors_from and disabled_until aren't synchronized:
Is there any way to make the proxies sync those values as well? Is this a bug or was intentionally?
Thank you.
I've a quiet huge setup with over 1000 hosts which are Windows client machines. I'm using Zabbix 5.4.
I automatically configure them to connect via TLS once they are auto-registered. Sometimes for various reasons the configuration fails or those hosts aren't physically available any longer, so I'm currently trying to remove clients which aren't available for some weeks. My approach is to check how long the main interface of a host is offline.
On the (active) proxy when I look into the database I can see the following:
Code:
mysql> select errors_from,disable_until from interface where hostid=12702; +-------------+---------------+ | errors_from | disable_until | +-------------+---------------+ | 1629282147 | 1631101388 | | 1629285274 | 1631101393 | +-------------+---------------+ 2 rows in set (0.00 sec)
Code:
mysql> select errors_from,disable_until from interface where hostid=12702; +-------------+---------------+ | errors_from | disable_until | +-------------+---------------+ | 0 | 0 | | 0 | 0 | +-------------+---------------+ 2 rows in set (0.00 sec)
Thank you.
Comment