真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

用php編寫Nagios插件-創(chuàng)新互聯(lián)

最近寫了一個檢測網(wǎng)站是否能正常登陸的php腳本,并可以作為Nagios插件使用
Nagios插件是Nagios提供的一種可通過擴展方式部署的組件,該插件支持Java、C\C++、php等多種語言開發(fā),操作員通過修改配置文件和相應(yīng)參數(shù),就能很方便地將該插件集成到Nagios中,實現(xiàn)對目標(biāo)系統(tǒng)的監(jiān)控。
Nagios插件程序可以提供兩個返回值,一個是插件的退出狀態(tài)碼,一個是插件在控制臺打印的第一行數(shù)據(jù)。退出狀態(tài)碼可以被Nagios主程序作為判斷被監(jiān)控系統(tǒng)服務(wù)狀態(tài)的依據(jù),控制臺打印的第一行數(shù)據(jù)可以被Nagios主程序作為被監(jiān)控系統(tǒng)服務(wù)狀態(tài)的補充說明。
Nagios主程序可識別的狀態(tài)碼和說明如下:
狀態(tài)碼   說明
0   OK
1   WARNING
2   CRITICAL
3   UNKOWN

創(chuàng)新互聯(lián)建站總部坐落于成都市區(qū),致力網(wǎng)站建設(shè)服務(wù)有網(wǎng)站設(shè)計制作、成都網(wǎng)站建設(shè)、網(wǎng)絡(luò)營銷策劃、網(wǎng)頁設(shè)計、網(wǎng)站維護(hù)、公眾號搭建、微信小程序、軟件開發(fā)等為企業(yè)提供一整套的信息化建設(shè)解決方案。創(chuàng)造真正意義上的網(wǎng)站建設(shè),為互聯(lián)網(wǎng)品牌在互動行銷領(lǐng)域創(chuàng)造價值而不懈努力!

********下面是php腳本的內(nèi)容***********
#!/usr/bin/php
if($argc < 3){
echo 'php '.$argv[0].'  ‘.PHP_EOL;
exit(1);
}
class http{
  private $_curl;
  private $_user_agent;
  private $_cookie;
  private $_getopt = array();
  private $_postopt = array();
  function __construct(){
    $this->_user_agent = ‘Mozilla/5.0 (Windows NT 6.1; rv:15.0) Gecko/20100101 Firefox/15.0.1′;
    $this->_cookie = ‘/tmp/cookie.txt’;
  }
  public function get($url){
    $this->_getopt = array(CURLOPT_CONNECTTIMEOUT => 20,
               CURLOPT_URL => $url,
               CURLOPT_HEADER => 0,
               CURLOPT_NOBODY => 1,
               //CURLOPT_COOKIEJAR => $this->_cookie,
               //CURLOPT_COOKIEFILE => $this->_cookie,
               CURLOPT_USERAGENT => $this->_user_agent,
               CURLOPT_RETURNTRANSFER => 1);
    $this->_curl = curl_init();
    curl_setopt_array($this->_curl, $this->_getopt);
    $data = curl_exec($this->_curl);
    $http_code = curl_getinfo($this->_curl, CURLINFO_HTTP_CODE);
    $time_total = curl_getinfo($this->_curl, CURLINFO_TOTAL_TIME);
    $retval = $http_code.’,’.$time_total;
    curl_close($this->_curl);
    return $retval;
  }
  public function post($url,Array $post){
    $this->_postopt = array(CURLOPT_CONNECTTIMEOUT => 20,
                CURLOPT_URL => $url,
                CURLOPT_HEADER => 0,
                  CURLOPT_COOKIEJAR => $this->_cookie,
                CURLOPT_POST => 1,
                CURLOPT_POSTFIELDS => http_build_query($post),
                CURLOPT_USERAGENT => $this->_user_agent,
                CURLOPT_RETURNTRANSFER => 1);
    $this->_curl = curl_init();
    curl_setopt_array($this->_curl, $this->_postopt);
    $data = curl_exec($this->_curl);
    curl_close($this->_curl);
    return $data;
  }

  public function rpost($url){
    $this->_postopt = array(CURLOPT_CONNECTTIMEOUT => 20,
                                CURLOPT_URL => $url,
                                CURLOPT_HEADER => 1,
                                CURLOPT_NOBODY => 1,
                                CURLOPT_COOKIEFILE => $this->_cookie,
                                CURLOPT_USERAGENT => $this->_user_agent,
                                CURLOPT_RETURNTRANSFER => 1);
    $this->_curl = curl_init();
    curl_setopt_array($this->_curl, $this->_postopt);
    $data = curl_exec($this->_curl);
    $http_code = curl_getinfo($this->_curl, CURLINFO_HTTP_CODE);
    $time_namelookup = curl_getinfo($this->_curl, CURLINFO_NAMELOOKUP_TIME);
    $time_connect = curl_getinfo($this->_curl, CURLINFO_CONNECT_TIME);
    $time_starttransfer = curl_getinfo($this->_curl, CURLINFO_STARTTRANSFER_TIME);
    $time_total = curl_getinfo($this->_curl, CURLINFO_TOTAL_TIME);
    $size_download = curl_getinfo($this->_curl, CURLINFO_SIZE_DOWNLOAD);
    $speed_download = curl_getinfo($this->_curl, CURLINFO_SPEED_DOWNLOAD);
    curl_close($this->_curl);
    //$retval = date(‘Y-m-d_H:i:s’).’,’.$http_code.’,’.$time_namelookup.’,’.$time_connect.’,’.$time_starttransfer.’,’.$time_total.’,’.$size_download.’,’.$speed_download.’,’.$url;
    $retval = $http_code.’,’.$time_total;
    return $retval;
  }
}

class ciwong{
private $_username;
private $_passwd;
private $_http;
private $_sid;
function __construct($username = ’3sdf’, $passwd = ‘dfser’){
$this->_username = $username;
$this->_passwd = $passwd;
$this->_http = new http();
}
public function postLogin($url){
$post_url = ‘http://passport.ciwong.com/signin’;
$post['username'] = $this->_username;
$post['password'] = $this->_passwd;
$post['returnUrl'] = $url;
$data = $this->_http->post($post_url, $post);
$data = $this->_http->rpost($url);
return $data;
}
public function getUrl($url){
$data = $this->_http->get($url);
return $data;
}
}

$type = $argv[1];
$url = $argv[2];
$username = ’3244′;
$passwd = ’3423′;
$status_ok = 0;
$status_warning = 1;

$cw = new ciwong($username, $passwd);
switch($type){
case ‘get’:
$retval = $cw->getUrl($url);
    list($http_status, $time_total) = explode(‘,’, $retval);
    if ($http_status==200 || $http_status==301 || $http_status==302){
      echo “HTTP OK: Status line output is \”$http_status\” – $time_total second response time\n”;
      exit($status_ok);
    }else{
      echo “HTTP WARNING: Status line output is \”$http_status\” – $time_total second response time\n”;
      exit($status_warning);
    }
break;
case ‘post’:
$retval = $cw->postLogin($url);
    list($http_status, $time_total) = explode(‘,’, $retval);
    if($http_status==200 || $retval==301 || $retval==302){
      echo “HTTP OK: Status line output is \”$http_status\” – $time_total second response time\n”;
      exit($status_ok);
    }else{
      echo “HTTP WARNING: Status line output is \”$http_status\” – $time_total second response time\n”;
      exit($status_warning);
    }
break;
default:
    echo ‘php ‘.$argv[0].’  ‘.PHP_EOL;
    exit(1);
}

***********************over*******************************

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)頁標(biāo)題:用php編寫Nagios插件-創(chuàng)新互聯(lián)
文章起源:http://weahome.cn/article/ipepp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部