Hi guys,
I´m trying to generate report of all disable items on Zabbix database with the following query:
select a1.host, a2.itemid,a2.name from hosts a1, items a2
where a1.hostid = a2.hostid
and a2.status = 1;
When I run this query I got 183 disabled items but the system information widget tells me that I have 201 disabled items
Do you know why the amount does not match? Is my sql query right?
Thanks,
I´m trying to generate report of all disable items on Zabbix database with the following query:
select a1.host, a2.itemid,a2.name from hosts a1, items a2
where a1.hostid = a2.hostid
and a2.status = 1;
When I run this query I got 183 disabled items but the system information widget tells me that I have 201 disabled items
Do you know why the amount does not match? Is my sql query right?
Thanks,
Comment