Ad Widget

Collapse

Screenshot capture of Zabbix Triggers

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mun
    Member
    • Sep 2016
    • 67

    #1

    Screenshot capture of Zabbix Triggers

    Hi,

    Is it possible to have an automatic screenshot capture of Zabbix Triggers?
    So that, I'm able to screenshot the triggers and send email to our clients.

    Thanks.
  • wick
    Member
    • May 2017
    • 57

    #2
    Hi Mun,

    I think you can use this command on a service bash

    wkhtmltoimage

    With this tools you can screenshot a page. before you need to configure that for take a screen when a trigger appear with a sql query and send it.

    In any case this is my way of thinking.
    if you want the sql query i can help you

    Comment

    • Mun
      Member
      • Sep 2016
      • 67

      #3
      Screenshot capture of Zabbix Triggers

      Originally posted by wick
      Hi Mun,

      I think you can use this command on a service bash

      wkhtmltoimage

      With this tools you can screenshot a page. before you need to configure that for take a screen when a trigger appear with a sql query and send it.

      In any case this is my way of thinking.
      if you want the sql query i can help you
      Hi Wick,

      Thank you for your suggestion, appreciate you can help with the sql query.

      Thanks.

      Comment

      • wick
        Member
        • May 2017
        • 57

        #4
        Hi

        Here it's the sql query who count the number of active trigger

        Code:
        SELECT count(DISTINCT t.triggerid) FROM triggers t, functions f, items i, hosts h WHERE t.triggerid=f.triggerid AND f.itemid=i.itemid AND i.status=0 AND i.hostid=h.hostid AND h.status=0 AND t.status=0 AND t.value=1

        Comment

        Working...