Zabbix Unsupported Items Status

Posted on .

Following on from the zabbix status script, I have put togethor another script to list any unsupported items on agents.

For an item to go unsupported, it usually means something is wrong with the agent, so I add this script to /etc/cron.hourly.

The SQL query to get the list of unsupported items is,

Download
  zabbix-unsupported-status.sh (1.3 KiB, 2,435 hits)

One thought on “Zabbix Unsupported Items Status

  1. Anonymous

    Hi, for me it only works with this modification:

    SELECT hosts.host AS hostname, items.description AS item, items.key_ AS “key” FROM items RIGHT JOIN hosts ON items.hostid=hosts.hostid WHERE items.state = 1;

    bye

    Reply

Leave a Reply

You may leave the Name and Email fields blank to post anonymously.