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

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

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

********下面是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元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

標(biāo)題名稱:用php編寫Nagios插件-創(chuàng)新互聯(lián)
URL分享:http://bm7419.com/article38/ipepp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司、App設(shè)計(jì)、微信公眾號(hào)App開發(fā)、企業(yè)建站、Google

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)