Ad Widget

Collapse

Using Zabbix to monitor a forward proxy server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Antoinius.Bloch
    Junior Member
    • Aug 2012
    • 2

    #1

    Using Zabbix to monitor a forward proxy server

    Cross posted from server fault:

    http://serverfault.com/questions/415...d-proxy-server

    I need to be notified when our proxy server goes down. Currently I have a bash script that tests the proxy functionality:

    Code:
    CHECKRESULT=(curl -s --proxy 4.83.58.205:80 checkip.dyndns.com | awk '{print $6}' | sed 's/<\/body><\/html>\r//g';)
    
    
    if [ "$CHECKRESULT" != "4.83.58.205" ]
                                    then
                                    echo "FAILED: proxy 4.83.58.205 returned \" $CHECKRESULT\""
                                    FAILEDCOUNT=$(($FAILEDCOUNT+1))
                                    fi
    I'm just getting started with Zabbix and would like to use it to run a similar check, but how?
  • Antoinius.Bloch
    Junior Member
    • Aug 2012
    • 2

    #2
    http

    It's an http proxy btw, not a Zabbix proxy. Just want to monitor functionality .

    Comment

    Working...