zoukankan      html  css  js  c++  java
  • linux下利用curl监控web应用状态

    监控机器列表文件:
    server.list
     
     
    建立监控脚本:  webstatus.sh
     
     
    #!/bin/sh
    monitor_dir=/home/admin/monitor/                 #Log记录目录
    if [ ! -d $monitor_dir ]; then
        mkdir $monitor_dir
    fi
    cd $monitor_dir
    web_stat_log=web.status                                 #Log文件
    if [ ! -f $web_stat_log ]; then
       touch $web_stat_log
    fi
    server_list_file=server.list                                 #读取文件列表
    if [ ! -f $server_list_file ]; then
       echo "`date '+%Y-%m-%d %H:%M:%S'` ERROR:$server_list_file NOT exists!" >>$web_stat_log
    exit 1
    fi
    #total=`wc -l $server_list_file|awk '{print $1}'`
    for website in `cat $server_list_file`
    do
       url="http://$website/app.htm"                         #Url地址,从server.list 里读取
       server_status_code=`curl -o /dev/null -s -m 10 --connect-timeout 10 -w %{http_code} "$url"`
       if [ "$server_status_code" = "200" ]; then 
            echo "`date '+%Y-%m-%d %H:%M:%S'` visit $website status code 200 OK" >>$web_stat_log
       else 
            echo "`date '+%Y-%m-%d %H:%M:%S'` visit $website error!!! server can't connect at 10s or stop response at 10 s, send alerm sms ..." >>$web_stat_log
            echo "!app alarm @136xxxxxxxx  server:$website can't connect at 10s or stop response at 10s ..." | nc smsserver port &
       fi
    done
    exit 0
    

      

     
    crontab -e     定时执行脚本。
  • 相关阅读:
    Using NAT between the vCenter Server system and ESXi/ESX hosts (1010652)
    Zabbix监控windows进程连接数
    CentOS yum [Errno 14] problem making ssl connection CentOs
    httpSecurity
    Nginx
    线程基础知识
    SqlServler
    关于数据库索引
    Https的底层原理
    Synchronized
  • 原文地址:https://www.cnblogs.com/jicki/p/5546850.html
Copyright © 2011-2022 走看看