Ad Widget

Collapse

Get problem directly on Zabbix Proxy

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • andarius40
    Junior Member
    • Jul 2022
    • 3

    #1

    Get problem directly on Zabbix Proxy

    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 :
    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
  • Markku
    Senior Member
    Zabbix Certified SpecialistZabbix Certified ProfessionalZabbix Certified Expert
    • Sep 2018
    • 1781

    #2
    Originally posted by andarius40
    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
    See the documentation: https://www.zabbix.com/documentation...toring/proxies

    Markku

    Comment

    • andarius40
      Junior Member
      • Jul 2022
      • 3

      #3
      Good morning,

      Thank you.

      I understand, it's not possible.

      Best Regards

      Comment

      Working...