Hi,
I want to retreive a large json file in Zabbix 5.0 through this basic Zabbix agent item with key system.run[cat /tmp/mc_show_ap_client_trail-info] and Type of information : Text, but I get the error Not supported by Zabbix Agent
I believe this is due to the size of the file - which is 3.79 Mo (3797259) - since the documentation says that the text data limit is 65536 characters.
Is there any workaround to read the whole content of such files for each interval please ?
I want to retreive a large json file in Zabbix 5.0 through this basic Zabbix agent item with key system.run[cat /tmp/mc_show_ap_client_trail-info] and Type of information : Text, but I get the error Not supported by Zabbix Agent
I believe this is due to the size of the file - which is 3.79 Mo (3797259) - since the documentation says that the text data limit is 65536 characters.
Text data limits
Text data limits depend on the database backend. Before storing text values in the database they get truncated to match the database value type limit:
Text data limits depend on the database backend. Before storing text values in the database they get truncated to match the database value type limit:
| Character | Log | Text | |
| MySQL | 255 characters | 65536 bytes | 65536 bytes |
| PostgreSQL | 255 characters | 65536 characters | 65536 characters |
| Oracle | 255 characters | 65536 characters | 65536 characters |
Comment