The branch, master has been updated via 87b0c3074722f4e64c03343145c65a8256227623 (commit) from bb874cabdee70fdf44ed0c757cf986c69f83b529 (commit)
- Log ----------------------------------------------------------------- commit 87b0c3074722f4e64c03343145c65a8256227623 Author: Michal Čihař mcihar@novell.com Date: Fri Jan 28 11:06:44 2011 +0100
Better sort some status variables
-----------------------------------------------------------------------
Summary of changes: server_status.php | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/server_status.php b/server_status.php index 55f72b3..ca81691 100644 --- a/server_status.php +++ b/server_status.php @@ -342,12 +342,16 @@ $allocations = array( 'Flush_commands' => 'query', 'Last_query_cost' => 'query', 'Slow_queries' => 'query', + 'Queries' => 'query', + 'Prepared_stmt_count' => 'query',
'Select_' => 'select', 'Sort_' => 'sort',
'Open_tables' => 'table', 'Opened_tables' => 'table', + 'Open_table_definitions' => 'table', + 'Opened_table_definitions' => 'table', 'Table_locks_' => 'table',
'Rpl_status' => 'repl', @@ -356,6 +360,10 @@ $allocations = array( 'Tc_' => 'tc',
'Ssl_' => 'ssl', + + 'Open_files' => 'files', + 'Open_streams' => 'files', + 'Opened_files' => 'files', );
$sections = array( @@ -376,6 +384,7 @@ $sections = array( 'sort' => array('title' => __('Sorting')), 'table' => array('title' => __('Tables')), 'tc' => array('title' => __('Transaction coordinator')), + 'files' => array('title' => __('Files')), 'ssl' => array('title' => 'SSL'), );
hooks/post-receive