To reproduce
go to settings then poller switch off data collection
if the remote poller goes into heartbeat you will not be able to re-enable polling via gui
Looking deeper the remote DB will not be updated with poller_enabled 'on'
MariaDB [cacti]> select * from settings where name like '%poller_enabled%'\G ;
*************************** 1. row ***************************
name: poller_enabled
value:
1 row in set (0.00 sec)
Work around is to manually update this value in db
UPDATE settings SET value='on' WHERE name='poller_enabled';
To reproduce
go to settings then poller switch off data collection
if the remote poller goes into heartbeat you will not be able to re-enable polling via gui
Looking deeper the remote DB will not be updated with poller_enabled 'on'
Work around is to manually update this value in db