php實現監控varnish快取服務器的狀態,php監控varnish緩衝_PHP教程

來源:互聯網
上載者:User

php實現監控varnish快取服務器的狀態,php監控varnish緩衝


當varnish和網站部署在同一台伺服器上的時候,我們不可能隨時登入上伺服器去查看varnish的命中率,沒想到有大神早就寫了出來,今天就分享給大家,使用網頁查看varnish命中率。

系統:centos 5.x
軟體:varnish-3.0.x

ps:3.0以下的版本可以通過Socket串連到Varnish管理連接埠,通過stat命令查看,3.0以上沒有stat命令,只能通過下面的方法解決。

複製代碼 代碼如下:
<?php
$outfile=shell_exec("/usr/bin/varnishstat -x");
$xml=simplexml_load_string($outfile);
echo $xml->getName() . "
";
foreach($xml->children() as $child)
{
//$tmpName="";
foreach($child->children() as $subChild)
{
if ($subChild->getName() =="name" )
{
$tmpName=$subChild;
}
else if ($subChild->getName() =="value" )
{
if ($tmpName!="")
{
$arys["$tmpName"]=$subChild;
$tmpName="";
}
}
else
{
continue;
}
}
}
function byteReduce($bytes)
{
if ($bytes>1099511627776)
{
return round($bytes/1099511627776)."TB";
}
else if ($bytes > 1073741824)
{
return round($bytes/1073741824)."GB";
}
else if ($bytes>1048576)
{
return round($bytes/1048576)."MB";
}
else if ($bytes>1024)
{
return round($bytes/1024)."KB";
}
else
{
return $bytes."B";
}
}
echo "client_conn: ".$arys["client_conn"] . "
";
echo "client_req: ".$arys["client_req"] . "
";
echo "cache_hit: ".$arys["cache_hit"] . "
";
echo "cache_miss: ".$arys["cache_miss"] . "
";
echo "Cache hit rate: ".round(($arys["cache_hit"]/$arys["client_req"])*100)." %
";
echo "LRU nuked objects: ".$arys[n_lru_nuked]."
";
echo " ".byteReduce($arys["s_bodybytes"]+$arys["s_hdrbytes"])." Acc Content (".byteReduce($arys["s_hdrbytes"])." header ".byteReduce($arys["s_bodybytes"])." Body)";
?>

效果如下:

ps:為了查看即時情況,可以在這監控頁加個html定時重新整理.
好了,這樣就方便我們隨時查看varnish的狀態了.

http://www.bkjia.com/PHPjc/935486.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/935486.htmlTechArticlephp實現監控varnish快取服務器的狀態,php監控varnish緩衝 當varnish和網站部署在同一台伺服器上的時候,我們不可能隨時登入上伺服器去查看v...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.