Ad Widget

Collapse

Active checks only and host availability

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nocturn
    Junior Member
    • Nov 2008
    • 16

    #1

    Active checks only and host availability

    I'm using Zabbix to monitor several hosts over the Internet.

    Because I cannot use the normal agent listening on port 10050 (for security reasons), I'm experimenting with active checks.

    This seems to work fine, but when a host goes down (or stops sending checks), there's no indication or alert in Zabbix.

    What would be the right way to get this to work? Is it possible to have an active agent send some kind of heartbeat signal?

    Thanks

    Zabbix is 1.8.3 on Ubuntu 10.04 LTS
  • JBo
    Senior Member
    • Jan 2011
    • 310

    #2
    Hi,

    Originally posted by nocturn
    This seems to work fine, but when a host goes down (or stops sending checks), there's no indication or alert in Zabbix.

    What would be the right way to get this to work? Is it possible to have an active agent send some kind of heartbeat signal?
    You van use agent.ping item as heartbeat and nodata function in associated trigger:
    Code:
    {host:agent.ping.nodata(120)}=1
    will trigger if no data is received during 2 minutes.

    Hope this helps,
    JBo

    Comment

    • nocturn
      Junior Member
      • Nov 2008
      • 16

      #3
      Originally posted by JBo
      Hi,



      You van use agent.ping item as heartbeat and nodata function in associated trigger:
      Code:
      {host:agent.ping.nodata(120)}=1
      will trigger if no data is received during 2 minutes.

      Hope this helps,
      JBo
      Thanks JBo

      Comment

      Working...