I'm having trouble with an item that reports the versions of the installed packages. The problem is that the list is greater (115 KB) than the data text limit - https://www.zabbix.com/documentation...xt_data_limits
Can anyone point me in the right direction if it is the data text limit and which table I need to alter? I've set mediumtext in the history_text table value but this doesn't seem to have made any difference.
MariaDB [zabbix]> describe history_text;
+--------+---------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+---------------------+------+-----+---------+-------+
| itemid | bigint(20) unsigned | NO | MUL | NULL | |
| clock | int(11) | NO | | 0 | |
| value | mediumtext | YES | | NULL | |
| ns | int(11) | NO | | 0 | |
+--------+---------------------+------+-----+---------+-------+
4 rows in set (0.001 sec)
Thanks
Can anyone point me in the right direction if it is the data text limit and which table I need to alter? I've set mediumtext in the history_text table value but this doesn't seem to have made any difference.
MariaDB [zabbix]> describe history_text;
+--------+---------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+--------+---------------------+------+-----+---------+-------+
| itemid | bigint(20) unsigned | NO | MUL | NULL | |
| clock | int(11) | NO | | 0 | |
| value | mediumtext | YES | | NULL | |
| ns | int(11) | NO | | 0 | |
+--------+---------------------+------+-----+---------+-------+
4 rows in set (0.001 sec)
Thanks


Comment