mirror of https://github.com/BOINC/boinc.git
65 lines
2.3 KiB
PHP
65 lines
2.3 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
function showTableStatus($db) {
|
|
$size = 0;
|
|
$out = "";
|
|
start_table();
|
|
row1($db, 15);
|
|
row_array(array("Name", "Engine", "Version", "Row Format", "Rows", "Avg Row Length (KB)", "Data Length (MB)", "Max Data Length (MB)", "Index Length (MB)", "Data free (MB)", "Create Time", "Update Time", "Check Time", "Create Options", "Comment"));
|
|
mysql_select_db($db);
|
|
$result = mysql_query("show table status");
|
|
while($row = mysql_fetch_array($result)) {
|
|
$size += ($row["Data_length"] + $row["Index_length"]);
|
|
$engine = $row["Engine"];
|
|
if (!$engine) $engine = $row["Type"];
|
|
row_array(array(
|
|
$row["Name"],
|
|
$engine,
|
|
$row["Version"] ,
|
|
$row["Row_format"] ,
|
|
$row["Rows"] ,
|
|
round($row["Avg_row_length"]/1024,2) ,
|
|
round($row["Data_length"]/(1024*1024),2) ,
|
|
round($row["Max_data_length"]/(1024*1024),2) ,
|
|
round($row["Index_length"]/(1024*1024),2) ,
|
|
round($row["Data_free"]/(1024*1024),2) ,
|
|
$row["Create_time"] ,
|
|
$row["Update_time"] ,
|
|
$row["Check_time"] ,
|
|
$row["Create_options"] ,
|
|
$row["Comment"]
|
|
));
|
|
}
|
|
$size = round(($size/1024)/1024, 1);
|
|
row2("Total Table Sizes (MB)", $size);
|
|
end_table();
|
|
echo "<BR><BR>";
|
|
}
|
|
|
|
require_once("../inc/db.inc");
|
|
db_init();
|
|
page_head("MySQL Table Stats");
|
|
|
|
// add the databases you want to keep track of here
|
|
//
|
|
showTableStatus("boinc_alpha");
|
|
showTableStatus("cplan");
|
|
?>
|
|
|