php擷取linux伺服器CPU、記憶體、硬碟使用率的實現代碼

來源:互聯網
上載者:User
  1. define("MONITORED_IP", "172.16.0.191"); //被監控的伺服器IP地址 也就是本機地址
  2. define("DB_SERVER", "172.16.7.2"); //存放資料的伺服器IP地址
  3. define("DB_USER", "root");
  4. define("DB_PWD","111111");
  5. define("DB_NMAE","performance");
  6. class MyConnect{
  7. public function connect($db_server,$db_user,$db_pwd,$db_name){
  8. $conn = mysql_connect($db_server,$db_user,$db_pwd);
  9. if (!$conn){
  10. die('串連資料庫失敗: ' . mysql_error());
  11. }
  12. $flag = mysql_select_db($db_name,$conn);
  13. if(!$flag){
  14. echo "

    資料庫連接出錯!

    ";exit();
  15. }else{
  16. mysql_query("SET NAMES UTF8");
  17. }
  18. }
  19. }
  20. ?>
複製代碼

2、擷取伺服器效能資料的檔案 get_used_status.php

  1. /**

  2. * 擷取伺服器效能CPU、記憶體、硬碟等使用率
  3. * Edit bbs.it-home.org
  4. */
  5. /*串連資料 begin*/
  6. include("conn.php");
  7. $obj_MyConnect = new MyConnect();
  8. $obj_MyConnect -> connect(DB_SERVER,DB_USER,DB_PWD,DB_NMAE);
  9. /*串連資料 end*/
  10. function get_used_status(){
  11. $fp = popen('top -b -n 2 | grep -E "^(Cpu|Mem|Tasks)"',"r");//擷取某一時刻系統cpu和記憶體使用量情況
  12. $rs = "";
  13. while(!feof($fp)){
  14. $rs .= fread($fp,1024);
  15. }
  16. pclose($fp);
  17. $sys_info = explode("\n",$rs);

  18. $tast_info = explode(",",$sys_info[3]);//進程 數組

  19. $cpu_info = explode(",",$sys_info[4]); //CPU佔有量 數組
  20. $mem_info = explode(",",$sys_info[5]); //記憶體佔有量 數組

  21. //正在啟動並執行進程數

  22. $tast_running = trim(trim($tast_info[1],'running'));
  23. //CPU佔有量
  24. $cpu_usage = trim(trim($cpu_info[0],'Cpu(s): '),'%us'); //百分比
  25. //記憶體佔有量
  26. $mem_total = trim(trim($mem_info[0],'Mem: '),'k total');
  27. $mem_used = trim($mem_info[1],'k used');
  28. $mem_usage = round(100*intval($mem_used)/intval($mem_total),2); //百分比
  29. /*硬碟使用率 begin*/

  30. $fp = popen('df -lh | grep -E "^(/)"',"r");
  31. $rs = fread($fp,1024);
  32. pclose($fp);
  33. $rs = preg_replace("/\s{2,}/",' ',$rs); //把多個空格換成 “_”
  34. $hd = explode(" ",$rs);
  35. $hd_avail = trim($hd[3],'G'); //磁碟可用空間大小 單位G
  36. $hd_usage = trim($hd[4],'%'); //掛載點 百分比
  37. //print_r($hd);
  38. /*硬碟使用率 end*/
  39. //檢測時間
  40. $fp = popen("date +\"%Y-%m-%d %H:%M\"","r");
  41. $rs = fread($fp,1024);
  42. pclose($fp);
  43. $detection_time = trim($rs);
  44. /*擷取IP地址 begin*/
  45. /*
  46. $fp = popen('ifconfig eth0 | grep -E "(inet addr)"','r');
  47. $rs = fread($fp,1024);
  48. pclose($fp);
  49. $rs = preg_replace("/\s{2,}/",' ',trim($rs)); //把多個空格換成 “_”
  50. $rs = explode(" ",$rs);
  51. $ip = trim($rs[1],'addr:');
  52. */
  53. /*擷取IP地址 end*/
  54. /*
  55. $file_name = "/tmp/data.txt"; // 絕對路徑: homedata.dat
  56. $file_pointer = fopen($file_name, "a+"); // "w"是一種模式,詳見後面
  57. fwrite($file_pointer,$ip); // 先把檔案剪下為0位元組大小, 然後寫入
  58. fclose($file_pointer); // 結束
  59. */
  60. return array('cpu_usage'=>$cpu_usage,'mem_usage'=>$mem_usage,'hd_avail'=>$hd_avail,'hd_usage'=>$hd_usage,'tast_running'=>$tast_running,'detection_time'=>$detection_time);
  61. }
  62. //echo date("Y-m-d H:i:s",time())."
    ";
  63. $status=get_used_status();
  64. $sql = "insert into performance(ip,cpu_usage,mem_usage,hd_avail,hd_usage,tast_running,detection_time) ";
  65. $sql .= " value('".MONITORED_IP."','".$status['cpu_usage']."','".$status['mem_usage']."','".$status['hd_avail']."','".$status['hd_usage']."','".$status['tast_running']."','".$status['detection_time']."')";
  66. $query = mysql_query($sql) or die("SQL 陳述式執行失敗!");
  67. unset($status);
  68. //echo date("Y-m-d H:i:s",time())."
    ";
  69. ?>

複製代碼
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.