最近寫了一個檢測網(wǎng)站是否能正常登陸的php腳本,并可以作為Nagios插件使用
Nagios插件是Nagios提供的一種可通過擴展方式部署的組件,該插件支持Java、C\C++、php等多種語言開發(fā),操作員通過修改配置文件和相應參數(shù),就能很方便地將該插件集成到Nagios中,實現(xiàn)對目標系統(tǒng)的監(jiān)控。
Nagios插件程序可以提供兩個返回值,一個是插件的退出狀態(tài)碼,一個是插件在控制臺打印的第一行數(shù)據(jù)。退出狀態(tài)碼可以被Nagios主程序作為判斷被監(jiān)控系統(tǒng)服務狀態(tài)的依據(jù),控制臺打印的第一行數(shù)據(jù)可以被Nagios主程序作為被監(jiān)控系統(tǒng)服務狀態(tài)的補充說明。
Nagios主程序可識別的狀態(tài)碼和說明如下:
狀態(tài)碼 說明
0 OK
1 WARNING
2 CRITICAL
3 UNKOWN
********下面是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*******************************
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
標題名稱:用php編寫Nagios插件-創(chuàng)新互聯(lián)
URL分享:http://muchs.cn/article38/ipepp.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設計公司、App設計、微信公眾號、App開發(fā)、企業(yè)建站、Google
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容