From 365fb3613ebf0b4959bfdd4be1a15fd8eb74af5a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 22 Oct 2008 04:24:35 +0000 Subject: [PATCH] - add dbinfo.php svn path=/trunk/boinc/; revision=16250 --- html/ops/dbinfo.php | 103 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 html/ops/dbinfo.php diff --git a/html/ops/dbinfo.php b/html/ops/dbinfo.php new file mode 100644 index 0000000000..078dee8060 --- /dev/null +++ b/html/ops/dbinfo.php @@ -0,0 +1,103 @@ +"); + +db_init(); + +admin_page_head("BOINC Database Info"); + +// if you have other db's just add more get_db_info lines +get_db_info($db_name); + +admin_page_tail(); + +function get_db_info($mydb) +{ + // Carl grabbed this from the mysql.com boards http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html + + $MB = 1048576; + $KB = 1024; + + echo "
Database$mydb
"; + echo ""; + + $result = mysql_query("SHOW TABLE STATUS FROM $mydb"); + +/* SQL output + + mysql> show table status from qcnalpha; + +| Name | Engine | Version | Row_format | Rows | Avg_row_length | Data_length | Max_data_length | Index_length | Data_free | Auto_increment | Create_time | Update_time | Check_time | Collation | Checksum | Create_options | Comment | + +*/ + + $gdata = 0; + $gindex = 0; + $gtotal = 0; + $grows = 0; + + while($myarr = mysql_fetch_assoc($result)) { + $total = $myarr["Data_length"]+$myarr["Index_length"]; + + // sum grand totals + $gdata += $myarr["Data_length"]; + $gindex += $myarr["Index_length"]; + $gtotal += $total; + $grows += $myarr["Rows"]; + + + echo ""; + + echo " + "; + } + + $gdata /= $MB; + $gindex /= $MB; + $gtotal /= $MB; + + echo "
TableData SizeIndex SizeTotal sizeTotal RowsAvg. Size per Row
"; + echo $myarr["Name"] . "
"; + if ( $myarr["Data_length"] < $KB) { + echo " " . $myarr["Data_length"]; + } elseif ( ($myarr["Data_length"] > $KB) && ($myarr["Data_length"] < $MB) ) { + printf("%.0fK",($myarr["Data_length"] / $KB) ); + } elseif ( $myarr["Data_length"] >= $MB) { + printf("%.2fMB",($myarr["Data_length"] / $MB) ); + } + echo ""; + + if ( $myarr["Index_length"] < $KB) { + echo " ".$myarr["Index_length"]; + } elseif ( ($myarr["Index_length"] > $KB) && ($myarr["Index_length"] < $MB) ) { + printf("%.0fK",($myarr["Index_length"] / $KB) ); + } elseif ( $myarr["Index_length"] >= $MB) { + printf("%.2fMB",($myarr["Index_length"] / $MB) ); + } + echo "
"; + + if ( $total < $KB) { + echo " ".$total; + } elseif ( ($total > $KB) && ($total < $MB) ) { + printf("%.0fK",($total / $KB) ); + } elseif ( $total >= $MB) { + printf("%.2fMB",($total / $MB) ); + } + echo "
"; + + echo " + " . $myarr["Rows"]." + ".$myarr["Avg_row_length"]."
Totals:"; + printf("%.2fMB", $gdata); + echo ""; + printf("%.2fMB", $gindex); + echo ""; + printf("%.2fMB", $gtotal); + echo " + " . $grows . "


"; +} + +?>