Hi, I wanted to ask if there might be any issues with Zabbix if I manually update the items.history column values in database.
We have at the moment more than 45K items where history='90d' and I need to set them to '30d'.
My idea is to run this:
Has anyone done this kind of thing and lived to tell the tale?
Database = postgres
Zabbix version = 3.4.15
We have at the moment more than 45K items where history='90d' and I need to set them to '30d'.
My idea is to run this:
Code:
begin; update items set history = '30d' where history = '90d'; commit;
Database = postgres
Zabbix version = 3.4.15
Comment