Hi,
Do you know which table in the database is the one I should touch to delete individual values in Zabbix?
I've seen this Jira (https://support.zabbix.com/browse/ZBXNEXT-683) but it is still not implemented in Zabbix.
When I look for a specific ItemID I get:
But then:
Do you know which table in the database is the one I should touch to delete individual values in Zabbix?
I've seen this Jira (https://support.zabbix.com/browse/ZBXNEXT-683) but it is still not implemented in Zabbix.
When I look for a specific ItemID I get:
Code:
mysql> select itemid from `items` where description LIKE '%MPLS%'; +--------+ | itemid | +--------+ | 52275 | | 52276 | | 52283 | | 52284 | | 52285 | | 52286 | | 52287 | | 52288 | | 52289 | | 52290 | | 52291 | | 52292 | | 52293 | | 52294 | +--------+ 14 rows in set (0.07 sec)
But then:
Code:
mysql> select * from history where itemid = 52294; Empty set (0.00 sec)
Comment