Ad Widget

Collapse

Monitoring devices behind proxy

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chrislacey
    Junior Member
    • Nov 2020
    • 3

    #1

    Monitoring devices behind proxy

    Hi
    Can someone help with monitoring the availability of devices on a remote site behind a zabbix proxy.
    if i use an item zabbix[host,snmp,available] and a trigger {device:zabbix[host,snmp,available].nodata(10m)}=1 it works fine for remote routers that it connects to and if it doesnt connect it will show as unavailable from the trigger.
    I cannot find a way to detect if a proxy is down, or the devices behind the proxy the trigger shows as OK even though no data is received
    Thanks
    Chris
  • NilsA
    Senior Member
    • Sep 2020
    • 102

    #2
    Hi,

    check out this post from the official documentation: https://www.zabbix.com/documentation...types/internal

    zabbix[proxy,<name>,<param>]
    Information about Zabbix proxy. Integer. name: proxy name

    Valid values for param are:
    lastaccess - timestamp of last heart beat message received from proxy
    delay - how long collected values are unsent, calculated as "proxy delay" (difference between the current proxy time and the timestamp of the oldest unsent value on proxy) + ("current server time" - "proxy lastaccess")

    Example:
    ⇒ zabbix[proxy,"Germany",lastaccess]

    fuzzytime() trigger function can be used to check availability of proxies.
    This item is always p
    Credits go to Hamardaban

    The trigger shows OK, because there is no problem event generated. If you want to monitor the proxy and connection to that network, monitor each proxy with your zabbix server or a proxy dedicated to that task in your zabbix server network.
    Triggers from hosts don't generate problem events if their proxy goes down.

    Comment

    • chrislacey
      Junior Member
      • Nov 2020
      • 3

      #3
      Thanks for your help NilsA, i have followed that and solved the problem....

      Comment

      Working...