Quote from: isoftcom on November 19, 2018, 08:12:37 PM
Is there way on how to tell netxms not to generate a lot of these history?
Sure.
1) Increase collection interval for the table DCI (it's once a minute by default)
2) Decrease retention time for the table DCI (1 month by default)
You can change these settings per-DCI.
To find out which DCI consume most of the space, you can query table in question:
Code Select
select item_id,count(*) c from tdata_122 group by item_id order by c desc;ID is the same as shown in data collection editor for the node
: