Good afternoon,
Currently I run some test with Zabbix 5.0.19 (I will be upgrade it to 6 LTS ) soon
My question is
If I have a mistake between Zabbix proxy and Zabbix Server.
is it possible to get problem on Zabbix proxy direclty, maybe with api or a SLQ request
I have test a SQL request :
But I don't find parameter or maybe a table missing, to obtain last 50 alerts
Thank you for your help
Best Regards
Currently I run some test with Zabbix 5.0.19 (I will be upgrade it to 6 LTS ) soon
My question is
If I have a mistake between Zabbix proxy and Zabbix Server.
is it possible to get problem on Zabbix proxy direclty, maybe with api or a SLQ request
I have test a SQL request :
Code:
SELECT p.clock, p.value, p.itemid, i.itemid,i.name, i.key_ , i.status, i.hostid, h.hostid, h.host, h.name, h.status FROM pr oxy_history p INNER JOIN items i ON ( i.itemid = p.itemid ) INNER JOIN hosts h ON (i.hostid = h.hostid) WHERE p.value <> 0 LIMIT 50;
But I don't find parameter or maybe a table missing, to obtain last 50 alerts
Thank you for your help
Best Regards
Comment