Hi all.
I have implemented a discovery rule to apply automatic registration, and I have a problem.
The discovery isn't run in the interval that I have established.
I set the interval to 1 hour (I also tried 120s) but for some reason the "Discovery" does not run.
I went to the database and consulted the rules discovery table and discover that doesn't matter if I change the update interval, the "nextcheck" to run the discovery is always 1969-12-31, never change; so the discovery never will run.
This is my configuration of my discovery rule.
Name: Local Network
Discover by proxy: No proxy
IP range: 192.168.0.0/16
Update Interval: 1h
Check: Zabbix agent "system.uname"
Device uniqueness criteria: IP Address
When I consult the database , this is what I get.
I have implemented a discovery rule to apply automatic registration, and I have a problem.
The discovery isn't run in the interval that I have established.
I set the interval to 1 hour (I also tried 120s) but for some reason the "Discovery" does not run.
I went to the database and consulted the rules discovery table and discover that doesn't matter if I change the update interval, the "nextcheck" to run the discovery is always 1969-12-31, never change; so the discovery never will run.
This is my configuration of my discovery rule.
Name: Local Network
Discover by proxy: No proxy
IP range: 192.168.0.0/16
Update Interval: 1h
Check: Zabbix agent "system.uname"
Device uniqueness criteria: IP Address
When I consult the database , this is what I get.
Code:
mysql> select name, from_unixtime(nextcheck) from drules; +------------------------+--------------------------+ | name | from_unixtime(nextcheck) | +------------------------+--------------------------+ | Local network | 1969-12-31 21:00:00 | | Red local PING | 2019-01-28 11:14:17 | | Red local SNMP | 2019-01-10 11:17:12 | | Local Network Hostname | 1969-12-31 21:00:00 | +------------------------+--------------------------+ 4 rows in set (0.00 sec)
Comment