Always get full information here
[phpmyadmin.git] / server_status.php
blobd26e0444a8b27abee4f8bb4ca4c68a7213693b94
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * displays status variables with descriptions and some hints an optmizing
5 * + reset status variables
7 * @package phpMyAdmin
8 */
10 /**
11 * no need for variables importing
12 * @ignore
14 if (! defined('PMA_NO_VARIABLES_IMPORT')) {
15 define('PMA_NO_VARIABLES_IMPORT', true);
18 if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true)
19 $GLOBALS['is_header_sent'] = true;
21 require_once './libraries/common.inc.php';
23 /**
24 * Ajax request
27 if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
28 // Send with correct charset
29 header('Content-Type: text/html; charset=UTF-8');
31 // real-time charting data
32 if (isset($_REQUEST['chart_data'])) {
33 switch($_REQUEST['type']) {
34 case 'proc':
35 $c = PMA_DBI_fetch_result("SHOW GLOBAL STATUS WHERE Variable_name = 'Connections'", 0, 1);
36 $result = PMA_DBI_query('SHOW PROCESSLIST');
37 $num_procs = PMA_DBI_num_rows($result);
39 $ret = array(
40 'x' => microtime(true)*1000,
41 'y_proc' => $num_procs,
42 'y_conn' => $c['Connections']
45 exit(json_encode($ret));
47 case 'queries':
48 $queries = PMA_DBI_fetch_result(
49 "SHOW GLOBAL STATUS
50 WHERE (Variable_name LIKE 'Com_%' OR Variable_name = 'Questions')
51 AND Value > 0'", 0, 1);
52 cleanDeprecated($queries);
53 // admin commands are not queries
54 unset($queries['Com_admin_commands']);
55 $questions = $queries['Questions'];
56 unset($queries['Questions']);
58 //$sum=array_sum($queries);
59 $ret = array(
60 'x' => microtime(true)*1000,
61 'y' => $questions,
62 'pointInfo' => $queries
65 exit(json_encode($ret));
67 case 'traffic':
68 $traffic = PMA_DBI_fetch_result(
69 "SHOW GLOBAL STATUS
70 WHERE Variable_name = 'Bytes_received'
71 OR Variable_name = 'Bytes_sent'", 0, 1);
73 $ret = array(
74 'x' => microtime(true)*1000,
75 'y_sent' => $traffic['Bytes_sent'],
76 'y_received' => $traffic['Bytes_received']
79 exit(json_encode($ret));
81 case 'chartgrid':
82 $ret = json_decode($_REQUEST['requiredData'], true);
83 $statusVars = array();
84 $sysinfo = $cpuload = $memory = 0;
86 foreach ($ret as $chart_id => $chartNodes) {
87 foreach ($chartNodes as $node_id => $node) {
88 switch ($node['dataType']) {
89 case 'statusvar':
90 // Some white list filtering
91 if (!preg_match('/[^a-zA-Z_]+/',$node['dataPoint']))
92 $statusVars[] = $node['dataPoint'];
93 break;
95 case 'proc':
96 $result = PMA_DBI_query('SHOW PROCESSLIST');
97 $ret[$chart_id][$node_id]['y'] = PMA_DBI_num_rows($result);
98 break;
100 case 'cpu':
101 if (!$sysinfo) {
102 require_once('libraries/sysinfo.lib.php');
103 $sysinfo = getSysInfo();
105 if (!$cpuload)
106 $cpuload = $sysinfo->loadavg();
108 if (PHP_OS == 'Linux') {
109 $ret[$chart_id][$node_id]['idle'] = $cpuload['idle'];
110 $ret[$chart_id][$node_id]['busy'] = $cpuload['busy'];
111 } else
112 $ret[$chart_id][$node_id]['y'] = $cpuload['loadavg'];
114 break;
116 case 'memory':
117 if (!$sysinfo) {
118 require_once('libraries/sysinfo.lib.php');
119 $sysinfo = getSysInfo();
121 if (!$memory)
122 $memory = $sysinfo->memory();
124 $ret[$chart_id][$node_id]['y'] = $memory[$node['dataPoint']];
125 break;
130 $vars = PMA_DBI_fetch_result(
131 "SHOW GLOBAL STATUS
132 WHERE Variable_name='" . implode("' OR Variable_name='", $statusVars) . "'", 0, 1);
134 foreach ($ret as $chart_id => $chartNodes) {
135 foreach ($chartNodes as $node_id => $node) {
136 if ($node['dataType'] == 'statusvar')
137 $ret[$chart_id][$node_id]['y'] = $vars[$node['dataPoint']];
141 $ret['x'] = microtime(true)*1000;
143 exit(json_encode($ret));
147 if (isset($_REQUEST['log_data'])) {
148 if(PMA_MYSQL_INT_VERSION < 50106) exit('""');
150 $start = intval($_REQUEST['time_start']);
151 $end = intval($_REQUEST['time_end']);
153 if ($_REQUEST['type'] == 'slow') {
154 $q = 'SELECT start_time, user_host, Sec_to_Time(Sum(Time_to_Sec(query_time))) as query_time, Sec_to_Time(Sum(Time_to_Sec(lock_time))) as lock_time, '.
155 'SUM(rows_sent) AS rows_sent, SUM(rows_examined) AS rows_examined, db, sql_text, COUNT(sql_text) AS \'#\' '.
156 'FROM `mysql`.`slow_log` WHERE start_time > FROM_UNIXTIME('.$start.') '.
157 'AND start_time < FROM_UNIXTIME('.$end.') GROUP BY sql_text';
159 $result = PMA_DBI_try_query($q);
161 $return = array('rows' => array(), 'sum' => array());
162 $type = '';
164 while ($row = PMA_DBI_fetch_assoc($result)) {
165 $type = strtolower(substr($row['sql_text'],0,strpos($row['sql_text'],' ')));
167 switch($type) {
168 case 'insert':
169 case 'update':
170 // Cut off big inserts and updates, but append byte count therefor
171 if(strlen($row['sql_text']) > 220)
172 $row['sql_text'] = substr($row['sql_text'],0,200) . '... [' .
173 implode(' ',PMA_formatByteDown(strlen($row['sql_text']), 2, 2)).']';
175 break;
176 default:
177 break;
180 if(!isset($return['sum'][$type])) $return['sum'][$type] = 0;
181 $return['sum'][$type] += $row['#'];
182 $return['rows'][] = $row;
185 $return['sum']['TOTAL'] = array_sum($return['sum']);
186 $return['numRows'] = count($return['rows']);
188 PMA_DBI_free_result($result);
190 exit(json_encode($return));
193 if($_REQUEST['type'] == 'general') {
194 $limitTypes = (isset($_REQUEST['limitTypes']) && $_REQUEST['limitTypes'])
195 ? 'AND argument REGEXP \'^(INSERT|SELECT|UPDATE|DELETE)\' ' : '';
197 $q = 'SELECT TIME(event_time) as event_time, user_host, thread_id, server_id, argument, count(argument) as \'#\' '.
198 'FROM `mysql`.`general_log` WHERE command_type=\'Query\' '.
199 'AND event_time > FROM_UNIXTIME('.$start.') AND event_time < FROM_UNIXTIME('.$end.') '.
200 $limitTypes . 'GROUP by argument'; // HAVING count > 1';
202 $result = PMA_DBI_try_query($q);
204 $return = array('rows' => array(), 'sum' => array());
205 $type = '';
206 $insertTables = array();
207 $insertTablesFirst = -1;
208 $i = 0;
209 $removeVars = isset($_REQUEST['removeVariables']) && $_REQUEST['removeVariables'];
211 while ($row = PMA_DBI_fetch_assoc($result)) {
212 preg_match('/^(\w+)\s/',$row['argument'],$match);
213 $type = strtolower($match[1]);
215 if(!isset($return['sum'][$type])) $return['sum'][$type] = 0;
216 $return['sum'][$type] += $row['#'];
218 switch($type) {
219 case 'insert':
220 // Group inserts if selected
221 if($removeVars && preg_match('/^INSERT INTO (`|\'|"|)([^\s\\1]+)\\1/i',$row['argument'],$matches)) {
222 $insertTables[$matches[2]]++;
223 if ($insertTables[$matches[2]] > 1) {
224 $return['rows'][$insertTablesFirst]['#'] = $insertTables[$matches[2]];
226 // Add a ... to the end of this query to indicate that there's been other queries
227 if($return['rows'][$insertTablesFirst]['argument'][strlen($return['rows'][$insertTablesFirst]['argument'])-1] != '.')
228 $return['rows'][$insertTablesFirst]['argument'] .= '<br/>...';
230 // Group this value, thus do not add to the result list
231 continue 2;
232 } else {
233 $insertTablesFirst = $i;
234 $insertTables[$matches[2]] += $row['#'] - 1;
237 // No break here
239 case 'update':
240 // Cut off big inserts and updates, but append byte count therefor
241 if(strlen($row['argument']) > 220)
242 $row['argument'] = substr($row['argument'],0,200) . '... [' .
243 implode(' ',PMA_formatByteDown(strlen($row['argument'])), 2, 2).']';
245 break;
247 default: break;
250 $return['rows'][] = $row;
251 $i++;
254 $return['sum']['TOTAL'] = array_sum($return['sum']);
255 $return['numRows'] = count($return['rows']);
257 PMA_DBI_free_result($result);
259 exit(json_encode($return));
263 if (isset($_REQUEST['logging_vars'])) {
264 if(isset($_REQUEST['varName']) && isset($_REQUEST['varValue'])) {
265 $value = PMA_sqlAddslashes($_REQUEST['varValue']);
266 if(!is_numeric($value)) $value="'".$value."'";
268 if(! preg_match("/[^a-zA-Z0-9_]+/",$_REQUEST['varName']))
269 PMA_DBI_query('SET GLOBAL '.$_REQUEST['varName'].' = '.$value);
273 $loggingVars = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES WHERE Variable_name IN ("general_log","slow_query_log","long_query_time","log_output")', 0, 1);
274 exit(json_encode($loggingVars));
277 if(isset($_REQUEST['query_analyzer'])) {
278 $return = array();
280 if(strlen($_REQUEST['database']))
281 PMA_DBI_select_db($_REQUEST['database']);
283 if ($profiling = PMA_profilingSupported())
284 PMA_DBI_query('SET PROFILING=1;');
286 // Do not cache query
287 $query = preg_replace('/^(\s*SELECT)/i','\\1 SQL_NO_CACHE',$_REQUEST['query']);
289 $result = PMA_DBI_try_query($query);
290 $return['affectedRows'] = $GLOBALS['cached_affected_rows'];
292 $result = PMA_DBI_try_query('EXPLAIN ' . $query);
293 while ($row = PMA_DBI_fetch_assoc($result)) {
294 $return['explain'][] = $row;
297 // In case an error happened
298 $return['error'] = PMA_DBI_getError();
300 PMA_DBI_free_result($result);
302 if($profiling) {
303 $return['profiling'] = array();
304 $result = PMA_DBI_try_query('SELECT seq,state,duration FROM INFORMATION_SCHEMA.PROFILING WHERE QUERY_ID=1 ORDER BY seq');
305 while ($row = PMA_DBI_fetch_assoc($result)) {
306 $return['profiling'][]= $row;
308 PMA_DBI_free_result($result);
311 exit(json_encode($return));
314 if(isset($_REQUEST['advisor'])) {
315 include('libraries/advisor.lib.php');
316 $advisor = new Advisor();
317 exit(json_encode($advisor->run()));
323 * Replication library
325 require './libraries/replication.inc.php';
326 require_once './libraries/replication_gui.lib.php';
329 * JS Includes
332 $GLOBALS['js_include'][] = 'server_status.js';
333 $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js';
334 $GLOBALS['js_include'][] = 'jquery/jquery.tablesorter.js';
335 $GLOBALS['js_include'][] = 'jquery/jquery.cookie.js'; // For tab persistence
336 $GLOBALS['js_include'][] = 'jquery/jquery.json-2.2.js';
337 $GLOBALS['js_include'][] = 'jquery/jquery.sprintf.js';
338 $GLOBALS['js_include'][] = 'jquery/jquery.sortableTable.js';
339 $GLOBALS['js_include'][] = 'jquery/timepicker.js';
340 // Charting
341 $GLOBALS['js_include'][] = 'highcharts/highcharts.js';
342 /* Files required for chart exporting */
343 $GLOBALS['js_include'][] = 'highcharts/exporting.js';
344 $GLOBALS['js_include'][] = 'canvg/flashcanvas.js';
345 $GLOBALS['js_include'][] = 'canvg/canvg.js';
346 $GLOBALS['js_include'][] = 'canvg/rgbcolor.js';
347 $GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js';
348 $GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js';
351 * flush status variables if requested
353 if (isset($_REQUEST['flush'])) {
354 $_flush_commands = array(
355 'STATUS',
356 'TABLES',
357 'QUERY CACHE',
360 if (in_array($_REQUEST['flush'], $_flush_commands)) {
361 PMA_DBI_query('FLUSH ' . $_REQUEST['flush'] . ';');
363 unset($_flush_commands);
367 * Kills a selected process
369 if (!empty($_REQUEST['kill'])) {
370 if (PMA_DBI_try_query('KILL ' . $_REQUEST['kill'] . ';')) {
371 $message = PMA_Message::success(__('Thread %s was successfully killed.'));
372 } else {
373 $message = PMA_Message::error(__('phpMyAdmin was unable to kill thread %s. It probably has already been closed.'));
375 $message->addParam($_REQUEST['kill']);
376 //$message->display();
382 * get status from server
384 $server_status = PMA_DBI_fetch_result('SHOW GLOBAL STATUS', 0, 1);
387 * for some calculations we require also some server settings
389 $server_variables = PMA_DBI_fetch_result('SHOW GLOBAL VARIABLES', 0, 1);
392 * cleanup of some deprecated values
394 cleanDeprecated($server_status);
397 * calculate some values
399 // Key_buffer_fraction
400 if (isset($server_status['Key_blocks_unused'])
401 && isset($server_variables['key_cache_block_size'])
402 && isset($server_variables['key_buffer_size'])) {
403 $server_status['Key_buffer_fraction_%'] =
405 - $server_status['Key_blocks_unused']
406 * $server_variables['key_cache_block_size']
407 / $server_variables['key_buffer_size']
408 * 100;
409 } elseif (isset($server_status['Key_blocks_used'])
410 && isset($server_variables['key_buffer_size'])) {
411 $server_status['Key_buffer_fraction_%'] =
412 $server_status['Key_blocks_used']
413 * 1024
414 / $server_variables['key_buffer_size'];
417 // Ratio for key read/write
418 if (isset($server_status['Key_writes'])
419 && isset($server_status['Key_write_requests'])
420 && $server_status['Key_write_requests'] > 0) {
421 $server_status['Key_write_ratio_%'] = 100 * $server_status['Key_writes'] / $server_status['Key_write_requests'];
424 if (isset($server_status['Key_reads'])
425 && isset($server_status['Key_read_requests'])
426 && $server_status['Key_read_requests'] > 0) {
427 $server_status['Key_read_ratio_%'] = 100 * $server_status['Key_reads'] / $server_status['Key_read_requests'];
430 // Threads_cache_hitrate
431 if (isset($server_status['Threads_created'])
432 && isset($server_status['Connections'])
433 && $server_status['Connections'] > 0) {
435 $server_status['Threads_cache_hitrate_%'] =
436 100 - $server_status['Threads_created'] / $server_status['Connections'] * 100;
440 * split variables in sections
442 $allocations = array(
443 // variable name => section
444 // variable names match when they begin with the given string
446 'Com_' => 'com',
447 'Innodb_' => 'innodb',
448 'Ndb_' => 'ndb',
449 'Handler_' => 'handler',
450 'Qcache_' => 'qcache',
451 'Threads_' => 'threads',
452 'Slow_launch_threads' => 'threads',
454 'Binlog_cache_' => 'binlog_cache',
455 'Created_tmp_' => 'created_tmp',
456 'Key_' => 'key',
458 'Delayed_' => 'delayed',
459 'Not_flushed_delayed_rows' => 'delayed',
461 'Flush_commands' => 'query',
462 'Last_query_cost' => 'query',
463 'Slow_queries' => 'query',
464 'Queries' => 'query',
465 'Prepared_stmt_count' => 'query',
467 'Select_' => 'select',
468 'Sort_' => 'sort',
470 'Open_tables' => 'table',
471 'Opened_tables' => 'table',
472 'Open_table_definitions' => 'table',
473 'Opened_table_definitions' => 'table',
474 'Table_locks_' => 'table',
476 'Rpl_status' => 'repl',
477 'Slave_' => 'repl',
479 'Tc_' => 'tc',
481 'Ssl_' => 'ssl',
483 'Open_files' => 'files',
484 'Open_streams' => 'files',
485 'Opened_files' => 'files',
488 $sections = array(
489 // section => section name (description)
490 'com' => 'Com',
491 'query' => __('SQL query'),
492 'innodb' => 'InnoDB',
493 'ndb' => 'NDB',
494 'handler' => __('Handler'),
495 'qcache' => __('Query cache'),
496 'threads' => __('Threads'),
497 'binlog_cache' => __('Binary log'),
498 'created_tmp' => __('Temporary data'),
499 'delayed' => __('Delayed inserts'),
500 'key' => __('Key cache'),
501 'select' => __('Joins'),
502 'repl' => __('Replication'),
503 'sort' => __('Sorting'),
504 'table' => __('Tables'),
505 'tc' => __('Transaction coordinator'),
506 'files' => __('Files'),
507 'ssl' => 'SSL',
511 * define some needfull links/commands
513 // variable or section name => (name => url)
514 $links = array();
516 $links['table'][__('Flush (close) all tables')]
517 = $PMA_PHP_SELF . '?flush=TABLES&amp;' . PMA_generate_common_url();
518 $links['table'][__('Show open tables')]
519 = 'sql.php?sql_query=' . urlencode('SHOW OPEN TABLES') .
520 '&amp;goto=server_status.php&amp;' . PMA_generate_common_url();
522 if ($server_master_status) {
523 $links['repl'][__('Show slave hosts')]
524 = 'sql.php?sql_query=' . urlencode('SHOW SLAVE HOSTS') .
525 '&amp;goto=server_status.php&amp;' . PMA_generate_common_url();
526 $links['repl'][__('Show master status')] = '#replication_master';
528 if ($server_slave_status) {
529 $links['repl'][__('Show slave status')] = '#replication_slave';
532 $links['repl']['doc'] = 'replication';
534 $links['qcache'][__('Flush query cache')]
535 = $PMA_PHP_SELF . '?flush=' . urlencode('QUERY CACHE') . '&amp;' .
536 PMA_generate_common_url();
537 $links['qcache']['doc'] = 'query_cache';
539 //$links['threads'][__('Show processes')]
540 // = 'server_processlist.php?' . PMA_generate_common_url();
541 $links['threads']['doc'] = 'mysql_threads';
543 $links['key']['doc'] = 'myisam_key_cache';
545 $links['binlog_cache']['doc'] = 'binary_log';
547 $links['Slow_queries']['doc'] = 'slow_query_log';
549 $links['innodb'][__('Variables')]
550 = 'server_engines.php?engine=InnoDB&amp;' . PMA_generate_common_url();
551 $links['innodb'][__('InnoDB Status')]
552 = 'server_engines.php?engine=InnoDB&amp;page=Status&amp;' .
553 PMA_generate_common_url();
554 $links['innodb']['doc'] = 'innodb';
557 // Variable to contain all com_ variables
558 $used_queries = array();
560 // Variable to map variable names to their respective section name (used for js category filtering)
561 $allocationMap = array();
563 // sort vars into arrays
564 foreach ($server_status as $name => $value) {
565 foreach ($allocations as $filter => $section) {
566 if (strpos($name, $filter) !== false) {
567 $allocationMap[$name] = $section;
568 if ($section == 'com' && $value > 0) $used_queries[$name] = $value;
569 break; // Only exits inner loop
574 if(PMA_DRIZZLE) {
575 $used_queries = PMA_DBI_fetch_result('SELECT * FROM data_dictionary.global_statements', 0, 1);
576 unset($used_queries['admin_commands']);
577 } else {
578 // admin commands are not queries (e.g. they include COM_PING, which is excluded from $server_status['Questions'])
579 unset($used_queries['Com_admin_commands']);
582 /* Ajax request refresh */
583 if (isset($_REQUEST['show']) && isset($_REQUEST['ajax_request'])) {
584 switch($_REQUEST['show']) {
585 case 'query_statistics':
586 printQueryStatistics();
587 exit();
588 case 'server_traffic':
589 printServerTraffic();
590 exit();
591 case 'variables_table':
592 // Prints the variables table
593 printVariablesTable();
594 exit();
596 default:
597 break;
602 * start output
606 * Does the common work
608 require './libraries/server_common.inc.php';
612 * Displays the links
614 require './libraries/server_links.inc.php';
616 $server = 1;
617 if (isset($_REQUEST['server']) && intval($_REQUEST['server'])) $server = intval($_REQUEST['server']);
619 $server_db_isLocal = strtolower($cfg['Servers'][$server]['host']) == 'localhost'
620 || $cfg['Servers'][$server]['host'] == '127.0.0.1'
621 || $cfg['Servers'][$server]['host'] == '::1';
624 <script type="text/javascript">
625 pma_token = '<?php echo $_SESSION[' PMA_token ']; ?>';
626 url_query = '<?php echo str_replace('&amp;','&',$url_query);?>';
627 server_time_diff = new Date().getTime() - <?php echo microtime(true)*1000; ?>;
628 server_os = '<?php echo PHP_OS; ?>';
629 is_superuser = <?php echo PMA_isSuperuser()?'true':'false'; ?>;
630 server_db_isLocal = <?php echo ($server_db_isLocal)?'true':'false'; ?>;
631 profiling_docu = '<?php echo PMA_showMySQLDocu('general-thread-states','general-thread-states'); ?>';
632 explain_docu = '<?php echo PMA_showMySQLDocu('explain-output', 'explain-output'); ?>';
633 </script>
634 <div id="serverstatus">
635 <h2><?php
637 * Displays the sub-page heading
639 if ($GLOBALS['cfg']['MainPageIconic']) {
640 echo '<img class="icon ic_s_status" src="themes/dot.gif" width="16" height="16" alt="" />';
643 echo __('Runtime Information');
645 ?></h2>
646 <div id="serverStatusTabs">
647 <ul>
648 <li><a href="#statustabs_traffic"><?php echo __('Server'); ?></a></li>
649 <li><a href="#statustabs_queries"><?php echo __('Query statistics'); ?></a></li>
650 <li><a href="#statustabs_allvars"><?php echo __('All status variables'); ?></a></li>
651 <li><a href="#statustabs_charting"><?php echo __('Monitor'); ?></a></li>
652 <li><a href="#statustabs_advisor"><?php echo __('Advisor'); ?></a></li>
653 </ul>
655 <div id="statustabs_traffic">
656 <div class="buttonlinks">
657 <a class="tabRefresh" href="<?php echo $PMA_PHP_SELF . '?show=server_traffic&amp;' . PMA_generate_common_url(); ?>" >
658 <img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" style="display: none;" />
659 <?php echo __('Refresh'); ?>
660 </a>
661 <span class="refreshList" style="display:none;">
662 <label for="trafficChartRefresh"><?php echo __('Refresh rate: '); ?></label>
663 <?php refreshList('trafficChartRefresh'); ?>
664 </span>
666 <a class="tabChart livetrafficLink" href="#">
667 <?php echo __('Live traffic chart'); ?>
668 </a>
669 <a class="tabChart liveconnectionsLink" href="#">
670 <?php echo __('Live conn./process chart'); ?>
671 </a>
672 </div>
673 <div class="tabInnerContent">
674 <?php printServerTraffic(); ?>
675 </div>
676 </div>
677 <div id="statustabs_queries">
678 <div class="buttonlinks">
679 <a class="tabRefresh" href="<?php echo $PMA_PHP_SELF . '?show=query_statistics&amp;' . PMA_generate_common_url(); ?>" >
680 <img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" style="display: none;" />
681 <?php echo __('Refresh'); ?>
682 </a>
683 <span class="refreshList" style="display:none;">
684 <label for="queryChartRefresh"><?php echo __('Refresh rate: '); ?></label>
685 <?php refreshList('queryChartRefresh'); ?>
686 </span>
687 <a class="tabChart livequeriesLink" href="#">
688 <?php echo __('Live query chart'); ?>
689 </a>
690 </div>
691 <div class="tabInnerContent">
692 <?php printQueryStatistics(); ?>
693 </div>
694 </div>
695 <div id="statustabs_allvars">
696 <fieldset id="tableFilter">
697 <div class="buttonlinks">
698 <a class="tabRefresh" href="<?php echo $PMA_PHP_SELF . '?show=variables_table&amp;' . PMA_generate_common_url(); ?>" >
699 <img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" style="display: none;" />
700 <?php echo __('Refresh'); ?>
701 </a>
702 </div>
703 <legend>Filters</legend>
704 <div class="formelement">
705 <label for="filterText"><?php echo __('Containing the word:'); ?></label>
706 <input name="filterText" type="text" id="filterText" style="vertical-align: baseline;" />
707 </div>
708 <div class="formelement">
709 <input type="checkbox" name="filterAlert" id="filterAlert">
710 <label for="filterAlert"><?php echo __('Show only alert values'); ?></label>
711 </div>
712 <div class="formelement">
713 <select id="filterCategory" name="filterCategory">
714 <option value=''><?php echo __('Filter by category...'); ?></option>
715 <?php
716 foreach ($sections as $section_id => $section_name) {
718 <option value='<?php echo $section_id; ?>'><?php echo $section_name; ?></option>
719 <?php
723 </select>
724 </div>
725 <div class="formelement">
726 <input type="checkbox" name="dontFormat" id="dontFormat">
727 <label for="dontFormat"><?php echo __('Show unformatted values'); ?></label>
728 </div>
729 </fieldset>
730 <div id="linkSuggestions" class="defaultLinks" style="display:none">
731 <p class="notice"><?php echo __('Related links:'); ?>
732 <?php
733 foreach ($links as $section_name => $section_links) {
734 echo '<span class="status_'.$section_name.'"> ';
735 $i=0;
736 foreach ($section_links as $link_name => $link_url) {
737 if ($i > 0) echo ', ';
738 if ('doc' == $link_name) {
739 echo PMA_showMySQLDocu($link_url, $link_url);
740 } else {
741 echo '<a href="' . $link_url . '">' . $link_name . '</a>';
743 $i++;
745 echo '</span>';
747 unset($link_url, $link_name, $i);
749 </p>
750 </div>
751 <div class="tabInnerContent">
752 <?php printVariablesTable(); ?>
753 </div>
754 </div>
756 <div id="statustabs_charting">
757 <?php printMonitor(); ?>
758 </div>
760 <div id="statustabs_advisor">
761 <p><a href="#startAnalyzer">Start analyzer</a> | <a href="#openAdvisorInstructions">Instructions</a></p>
762 <div class="tabInnerContent">
763 </div>
764 <div id="advisorInstructionsDialog" style="display:none;">
765 <?php echo __('The Advisor system can provide recommendations on server variables by analyzing the server status variables.
766 Do note however that this system provides recommendations based on fairly simple calculations and by rule of thumb and
767 may not necessarily work for your system.
768 Prior to changing any of the configuration, be sure to know what you are changing and how to undo the change. Wrong tuning
769 can have a very negative effect on performance.
770 The best way to tune the system would be to change only one setting at a time, observe or benchmark your database, and
771 undo the change if there was no clearly measurable improvement.'); ?>
772 </div>
773 </div>
774 </div>
775 </div>
777 <?php
779 function printQueryStatistics() {
780 global $server_status, $used_queries, $url_query, $PMA_PHP_SELF;
782 $hour_factor = 3600 / $server_status['Uptime'];
784 $total_queries = array_sum($used_queries);
787 <h3 id="serverstatusqueries">
788 <?php
789 /* l10n: Questions is the name of a MySQL Status variable */
790 echo sprintf(__('Questions since startup: %s'),PMA_formatNumber($total_queries, 0)) . ' ';
791 echo PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_Questions');
793 <br>
794 <span>
795 <?php
796 echo '&oslash; '.__('per hour').': ';
797 echo PMA_formatNumber($total_queries * $hour_factor, 0);
798 echo '<br>';
800 echo '&oslash; '.__('per minute').': ';
801 echo PMA_formatNumber( $total_queries * 60 / $server_status['Uptime'], 0);
802 echo '<br>';
804 if ($total_queries / $server_status['Uptime'] >= 1) {
805 echo '&oslash; '.__('per second').': ';
806 echo PMA_formatNumber( $total_queries / $server_status['Uptime'], 0);
809 </span>
810 </h3>
811 <?php
813 // reverse sort by value to show most used statements first
814 arsort($used_queries);
816 $odd_row = true;
817 $count_displayed_rows = 0;
818 $perc_factor = 100 / $total_queries; //(- $server_status['Connections']);
822 <table id="serverstatusqueriesdetails" class="data sortable noclick">
823 <col class="namecol" />
824 <col class="valuecol" span="3" />
825 <thead>
826 <tr><th><?php echo __('Statements'); ?></th>
827 <th><?php
828 /* l10n: # = Amount of queries */
829 echo __('#');
831 <th>&oslash; <?php echo __('per hour'); ?></th>
832 <th>%</th>
833 </tr>
834 </thead>
835 <tbody>
837 <?php
838 $chart_json = array();
839 $query_sum = array_sum($used_queries);
840 $other_sum = 0;
841 foreach ($used_queries as $name => $value) {
842 $odd_row = !$odd_row;
844 // For the percentage column, use Questions - Connections, because
845 // the number of connections is not an item of the Query types
846 // but is included in Questions. Then the total of the percentages is 100.
847 $name = str_replace(array('Com_', '_'), array('', ' '), $name);
849 // Group together values that make out less than 2% into "Other", but only if we have more than 6 fractions already
850 if ($value < $query_sum * 0.02 && count($chart_json)>6)
851 $other_sum += $value;
852 else $chart_json[$name] = $value;
854 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
855 <th class="name"><?php echo htmlspecialchars($name); ?></th>
856 <td class="value"><?php echo PMA_formatNumber($value, 5, 0, true); ?></td>
857 <td class="value"><?php echo
858 PMA_formatNumber($value * $hour_factor, 4, 1, true); ?></td>
859 <td class="value"><?php echo
860 PMA_formatNumber($value * $perc_factor, 0, 2); ?>%</td>
861 </tr>
862 <?php
865 </tbody>
866 </table>
868 <div id="serverstatusquerieschart">
869 <span style="display:none;">
870 <?php
871 if ($other_sum > 0)
872 $chart_json[__('Other')] = $other_sum;
874 echo json_encode($chart_json);
876 </span>
877 </div>
878 <?php
881 function printServerTraffic() {
882 global $server_status,$PMA_PHP_SELF;
883 global $server_master_status, $server_slave_status, $replication_types;
885 $hour_factor = 3600 / $server_status['Uptime'];
888 * starttime calculation
890 $start_time = PMA_DBI_fetch_value(
891 'SELECT UNIX_TIMESTAMP() - ' . $server_status['Uptime']);
894 <h3><?php
895 echo sprintf(
896 __('Network traffic since startup: %s'),
897 implode(' ', PMA_formatByteDown( $server_status['Bytes_received'] + $server_status['Bytes_sent'], 3, 1))
900 </h3>
903 <?php
904 echo sprintf(__('This MySQL server has been running for %1$s. It started up on %2$s.'),
905 PMA_timespanFormat($server_status['Uptime']),
906 PMA_localisedDate($start_time)) . "\n";
908 </p>
910 <?php
911 if ($server_master_status || $server_slave_status) {
912 echo '<p class="notice">';
913 if ($server_master_status && $server_slave_status) {
914 echo __('This MySQL server works as <b>master</b> and <b>slave</b> in <b>replication</b> process.');
915 } elseif ($server_master_status) {
916 echo __('This MySQL server works as <b>master</b> in <b>replication</b> process.');
917 } elseif ($server_slave_status) {
918 echo __('This MySQL server works as <b>slave</b> in <b>replication</b> process.');
920 echo __('For further information about replication status on the server, please visit the <a href="#replication">replication section</a>.');
921 echo '</p>';
924 /* if the server works as master or slave in replication process, display useful information */
925 if ($server_master_status || $server_slave_status)
928 <hr class="clearfloat" />
930 <h3><a name="replication"></a><?php echo __('Replication status'); ?></h3>
931 <?php
933 foreach ($replication_types as $type)
935 if (${"server_{$type}_status"}) {
936 PMA_replication_print_status_table($type);
939 unset($types);
943 <table id="serverstatustraffic" class="data noclick">
944 <thead>
945 <tr>
946 <th colspan="2"><?php echo __('Traffic') . '&nbsp;' . PMA_showHint(__('On a busy server, the byte counters may overrun, so those statistics as reported by the MySQL server may be incorrect.')); ?></th>
947 <th>&oslash; <?php echo __('per hour'); ?></th>
948 </tr>
949 </thead>
950 <tbody>
951 <tr class="odd">
952 <th class="name"><?php echo __('Received'); ?></th>
953 <td class="value"><?php echo
954 implode(' ',
955 PMA_formatByteDown($server_status['Bytes_received'], 3, 1)); ?></td>
956 <td class="value"><?php echo
957 implode(' ',
958 PMA_formatByteDown(
959 $server_status['Bytes_received'] * $hour_factor, 3, 1)); ?></td>
960 </tr>
961 <tr class="even">
962 <th class="name"><?php echo __('Sent'); ?></th>
963 <td class="value"><?php echo
964 implode(' ',
965 PMA_formatByteDown($server_status['Bytes_sent'], 3, 1)); ?></td>
966 <td class="value"><?php echo
967 implode(' ',
968 PMA_formatByteDown(
969 $server_status['Bytes_sent'] * $hour_factor, 3, 1)); ?></td>
970 </tr>
971 <tr class="odd">
972 <th class="name"><?php echo __('Total'); ?></th>
973 <td class="value"><?php echo
974 implode(' ',
975 PMA_formatByteDown(
976 $server_status['Bytes_received'] + $server_status['Bytes_sent'], 3, 1)
977 ); ?></td>
978 <td class="value"><?php echo
979 implode(' ',
980 PMA_formatByteDown(
981 ($server_status['Bytes_received'] + $server_status['Bytes_sent'])
982 * $hour_factor, 3, 1)
983 ); ?></td>
984 </tr>
985 </tbody>
986 </table>
988 <table id="serverstatusconnections" class="data noclick">
989 <thead>
990 <tr>
991 <th colspan="2"><?php echo __('Connections'); ?></th>
992 <th>&oslash; <?php echo __('per hour'); ?></th>
993 <th>%</th>
994 </tr>
995 </thead>
996 <tbody>
997 <tr class="odd">
998 <th class="name"><?php echo __('max. concurrent connections'); ?></th>
999 <td class="value"><?php echo
1000 PMA_formatNumber($server_status['Max_used_connections'], 0); ?> </td>
1001 <td class="value">--- </td>
1002 <td class="value">--- </td>
1003 </tr>
1004 <tr class="even">
1005 <th class="name"><?php echo __('Failed attempts'); ?></th>
1006 <td class="value"><?php echo
1007 PMA_formatNumber($server_status['Aborted_connects'], 4, 1, true); ?></td>
1008 <td class="value"><?php echo
1009 PMA_formatNumber($server_status['Aborted_connects'] * $hour_factor,
1010 4, 2, true); ?></td>
1011 <td class="value"><?php echo
1012 $server_status['Connections'] > 0
1013 ? PMA_formatNumber(
1014 $server_status['Aborted_connects'] * 100 / $server_status['Connections'],
1015 0, 2, true) . '%'
1016 : '--- '; ?></td>
1017 </tr>
1018 <tr class="odd">
1019 <th class="name"><?php echo __('Aborted'); ?></th>
1020 <td class="value"><?php echo
1021 PMA_formatNumber($server_status['Aborted_clients'], 4, 1, true); ?></td>
1022 <td class="value"><?php echo
1023 PMA_formatNumber($server_status['Aborted_clients'] * $hour_factor,
1024 4, 2, true); ?></td>
1025 <td class="value"><?php echo
1026 $server_status['Connections'] > 0
1027 ? PMA_formatNumber(
1028 $server_status['Aborted_clients'] * 100 / $server_status['Connections'],
1029 0, 2, true) . '%'
1030 : '--- '; ?></td>
1031 </tr>
1032 <tr class="even">
1033 <th class="name"><?php echo __('Total'); ?></th>
1034 <td class="value"><?php echo
1035 PMA_formatNumber($server_status['Connections'], 4, 0); ?></td>
1036 <td class="value"><?php echo
1037 PMA_formatNumber($server_status['Connections'] * $hour_factor,
1038 4, 2); ?></td>
1039 <td class="value"><?php echo
1040 PMA_formatNumber(100, 0, 2); ?>%</td>
1041 </tr>
1042 </tbody>
1043 </table>
1044 <?php
1046 $url_params = array();
1048 if (! empty($_REQUEST['full'])) {
1049 $sql_query = 'SHOW FULL PROCESSLIST';
1050 $url_params['full'] = 1;
1051 $full_text_link = 'server_status.php' . PMA_generate_common_url(array(), 'html', '?');
1052 } else {
1053 $sql_query = 'SHOW PROCESSLIST';
1054 $full_text_link = 'server_status.php' . PMA_generate_common_url(array('full' => 1));
1056 $result = PMA_DBI_query($sql_query);
1059 * Displays the page
1062 <table id="tableprocesslist" class="data clearfloat noclick">
1063 <thead>
1064 <tr>
1065 <th><?php echo __('Processes'); ?></th>
1066 <th><?php echo __('ID'); ?></th>
1067 <th><?php echo __('User'); ?></th>
1068 <th><?php echo __('Host'); ?></th>
1069 <th><?php echo __('Database'); ?></th>
1070 <th><?php echo __('Command'); ?></th>
1071 <th><?php echo __('Time'); ?></th>
1072 <th><?php echo __('Status'); ?></th>
1073 <th><?php
1074 echo __('SQL query');
1075 if (! PMA_DRIZZLE) { ?>
1076 <a href="<?php echo $full_text_link; ?>"
1077 title="<?php echo empty($full) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>">
1078 <img src="<?php echo $GLOBALS['pmaThemeImage'] . 's_' . (empty($_REQUEST['full']) ? 'full' : 'partial'); ?>text.png"
1079 alt="<?php echo empty($_REQUEST['full']) ? __('Show Full Queries') : __('Truncate Shown Queries'); ?>" />
1080 </a>
1081 <?php } ?>
1082 </th>
1083 </tr>
1084 </thead>
1085 <tbody>
1086 <?php
1087 $odd_row = true;
1088 while ($process = PMA_DBI_fetch_assoc($result)) {
1089 if (PMA_DRIZZLE) {
1090 // Drizzle uses uppercase keys
1091 foreach ($process as $k => $v) {
1092 $k = $k !== 'DB'
1093 ? ucfirst(strtolower($k))
1094 : 'db';
1095 $process[$k] = $v;
1098 $url_params['kill'] = $process['Id'];
1099 $kill_process = 'server_status.php' . PMA_generate_common_url($url_params);
1101 <tr class="<?php echo $odd_row ? 'odd' : 'even'; ?>">
1102 <td><a href="<?php echo $kill_process ; ?>"><?php echo __('Kill'); ?></a></td>
1103 <td class="value"><?php echo $process['Id']; ?></td>
1104 <td><?php echo $process['User']; ?></td>
1105 <td><?php echo $process['Host']; ?></td>
1106 <td><?php echo ((! isset($process['db']) || ! strlen($process['db'])) ? '<i>' . __('None') . '</i>' : $process['db']); ?></td>
1107 <td><?php echo $process['Command']; ?></td>
1108 <td class="value"><?php echo $process['Time']; ?></td>
1109 <td><?php echo (empty($process['State']) ? '---' : $process['State']); ?></td>
1110 <td>
1111 <?php
1112 if (empty($process['Info'])) {
1113 echo '---';
1114 } else {
1115 if (empty($_REQUEST['full']) && strlen($process['Info']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
1116 echo htmlspecialchars(substr($process['Info'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'])) . '[...]';
1117 } else {
1118 echo PMA_SQP_formatHtml(PMA_SQP_parse($process['Info']));
1122 </td>
1123 </tr>
1124 <?php
1125 $odd_row = ! $odd_row;
1128 </tbody>
1129 </table>
1130 <?php
1133 function printVariablesTable() {
1134 global $server_status, $server_variables, $allocationMap, $links;
1136 * Messages are built using the message name
1138 $strShowStatus = array(
1139 'Aborted_clients' => __('The number of connections that were aborted because the client died without closing the connection properly.'),
1140 'Aborted_connects' => __('The number of failed attempts to connect to the MySQL server.'),
1141 'Binlog_cache_disk_use' => __('The number of transactions that used the temporary binary log cache but that exceeded the value of binlog_cache_size and used a temporary file to store statements from the transaction.'),
1142 'Binlog_cache_use' => __('The number of transactions that used the temporary binary log cache.'),
1143 'Connections' => __('The number of connection attempts (successful or not) to the MySQL server.'),
1144 'Created_tmp_disk_tables' => __('The number of temporary tables on disk created automatically by the server while executing statements. If Created_tmp_disk_tables is big, you may want to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.'),
1145 'Created_tmp_files' => __('How many temporary files mysqld has created.'),
1146 'Created_tmp_tables' => __('The number of in-memory temporary tables created automatically by the server while executing statements.'),
1147 'Delayed_errors' => __('The number of rows written with INSERT DELAYED for which some error occurred (probably duplicate key).'),
1148 'Delayed_insert_threads' => __('The number of INSERT DELAYED handler threads in use. Every different table on which one uses INSERT DELAYED gets its own thread.'),
1149 'Delayed_writes' => __('The number of INSERT DELAYED rows written.'),
1150 'Flush_commands' => __('The number of executed FLUSH statements.'),
1151 'Handler_commit' => __('The number of internal COMMIT statements.'),
1152 'Handler_delete' => __('The number of times a row was deleted from a table.'),
1153 'Handler_discover' => __('The MySQL server can ask the NDB Cluster storage engine if it knows about a table with a given name. This is called discovery. Handler_discover indicates the number of time tables have been discovered.'),
1154 'Handler_read_first' => __('The number of times the first entry was read from an index. If this is high, it suggests that the server is doing a lot of full index scans; for example, SELECT col1 FROM foo, assuming that col1 is indexed.'),
1155 'Handler_read_key' => __('The number of requests to read a row based on a key. If this is high, it is a good indication that your queries and tables are properly indexed.'),
1156 'Handler_read_next' => __('The number of requests to read the next row in key order. This is incremented if you are querying an index column with a range constraint or if you are doing an index scan.'),
1157 'Handler_read_prev' => __('The number of requests to read the previous row in key order. This read method is mainly used to optimize ORDER BY ... DESC.'),
1158 'Handler_read_rnd' => __('The number of requests to read a row based on a fixed position. This is high if you are doing a lot of queries that require sorting of the result. You probably have a lot of queries that require MySQL to scan whole tables or you have joins that don\'t use keys properly.'),
1159 'Handler_read_rnd_next' => __('The number of requests to read the next row in the data file. This is high if you are doing a lot of table scans. Generally this suggests that your tables are not properly indexed or that your queries are not written to take advantage of the indexes you have.'),
1160 'Handler_rollback' => __('The number of internal ROLLBACK statements.'),
1161 'Handler_update' => __('The number of requests to update a row in a table.'),
1162 'Handler_write' => __('The number of requests to insert a row in a table.'),
1163 'Innodb_buffer_pool_pages_data' => __('The number of pages containing data (dirty or clean).'),
1164 'Innodb_buffer_pool_pages_dirty' => __('The number of pages currently dirty.'),
1165 'Innodb_buffer_pool_pages_flushed' => __('The number of buffer pool pages that have been requested to be flushed.'),
1166 'Innodb_buffer_pool_pages_free' => __('The number of free pages.'),
1167 'Innodb_buffer_pool_pages_latched' => __('The number of latched pages in InnoDB buffer pool. These are pages currently being read or written or that can\'t be flushed or removed for some other reason.'),
1168 'Innodb_buffer_pool_pages_misc' => __('The number of pages busy because they have been allocated for administrative overhead such as row locks or the adaptive hash index. This value can also be calculated as Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data.'),
1169 'Innodb_buffer_pool_pages_total' => __('Total size of buffer pool, in pages.'),
1170 'Innodb_buffer_pool_read_ahead_rnd' => __('The number of "random" read-aheads InnoDB initiated. This happens when a query is to scan a large portion of a table but in random order.'),
1171 'Innodb_buffer_pool_read_ahead_seq' => __('The number of sequential read-aheads InnoDB initiated. This happens when InnoDB does a sequential full table scan.'),
1172 'Innodb_buffer_pool_read_requests' => __('The number of logical read requests InnoDB has done.'),
1173 'Innodb_buffer_pool_reads' => __('The number of logical reads that InnoDB could not satisfy from buffer pool and had to do a single-page read.'),
1174 'Innodb_buffer_pool_wait_free' => __('Normally, writes to the InnoDB buffer pool happen in the background. However, if it\'s necessary to read or create a page and no clean pages are available, it\'s necessary to wait for pages to be flushed first. This counter counts instances of these waits. If the buffer pool size was set properly, this value should be small.'),
1175 'Innodb_buffer_pool_write_requests' => __('The number writes done to the InnoDB buffer pool.'),
1176 'Innodb_data_fsyncs' => __('The number of fsync() operations so far.'),
1177 'Innodb_data_pending_fsyncs' => __('The current number of pending fsync() operations.'),
1178 'Innodb_data_pending_reads' => __('The current number of pending reads.'),
1179 'Innodb_data_pending_writes' => __('The current number of pending writes.'),
1180 'Innodb_data_read' => __('The amount of data read so far, in bytes.'),
1181 'Innodb_data_reads' => __('The total number of data reads.'),
1182 'Innodb_data_writes' => __('The total number of data writes.'),
1183 'Innodb_data_written' => __('The amount of data written so far, in bytes.'),
1184 'Innodb_dblwr_pages_written' => __('The number of pages that have been written for doublewrite operations.'),
1185 'Innodb_dblwr_writes' => __('The number of doublewrite operations that have been performed.'),
1186 'Innodb_log_waits' => __('The number of waits we had because log buffer was too small and we had to wait for it to be flushed before continuing.'),
1187 'Innodb_log_write_requests' => __('The number of log write requests.'),
1188 'Innodb_log_writes' => __('The number of physical writes to the log file.'),
1189 'Innodb_os_log_fsyncs' => __('The number of fsync() writes done to the log file.'),
1190 'Innodb_os_log_pending_fsyncs' => __('The number of pending log file fsyncs.'),
1191 'Innodb_os_log_pending_writes' => __('Pending log file writes.'),
1192 'Innodb_os_log_written' => __('The number of bytes written to the log file.'),
1193 'Innodb_pages_created' => __('The number of pages created.'),
1194 'Innodb_page_size' => __('The compiled-in InnoDB page size (default 16KB). Many values are counted in pages; the page size allows them to be easily converted to bytes.'),
1195 'Innodb_pages_read' => __('The number of pages read.'),
1196 'Innodb_pages_written' => __('The number of pages written.'),
1197 'Innodb_row_lock_current_waits' => __('The number of row locks currently being waited for.'),
1198 'Innodb_row_lock_time_avg' => __('The average time to acquire a row lock, in milliseconds.'),
1199 'Innodb_row_lock_time' => __('The total time spent in acquiring row locks, in milliseconds.'),
1200 'Innodb_row_lock_time_max' => __('The maximum time to acquire a row lock, in milliseconds.'),
1201 'Innodb_row_lock_waits' => __('The number of times a row lock had to be waited for.'),
1202 'Innodb_rows_deleted' => __('The number of rows deleted from InnoDB tables.'),
1203 'Innodb_rows_inserted' => __('The number of rows inserted in InnoDB tables.'),
1204 'Innodb_rows_read' => __('The number of rows read from InnoDB tables.'),
1205 'Innodb_rows_updated' => __('The number of rows updated in InnoDB tables.'),
1206 'Key_blocks_not_flushed' => __('The number of key blocks in the key cache that have changed but haven\'t yet been flushed to disk. It used to be known as Not_flushed_key_blocks.'),
1207 'Key_blocks_unused' => __('The number of unused blocks in the key cache. You can use this value to determine how much of the key cache is in use.'),
1208 'Key_blocks_used' => __('The number of used blocks in the key cache. This value is a high-water mark that indicates the maximum number of blocks that have ever been in use at one time.'),
1209 'Key_read_requests' => __('The number of requests to read a key block from the cache.'),
1210 'Key_reads' => __('The number of physical reads of a key block from disk. If Key_reads is big, then your key_buffer_size value is probably too small. The cache miss rate can be calculated as Key_reads/Key_read_requests.'),
1211 'Key_write_requests' => __('The number of requests to write a key block to the cache.'),
1212 'Key_writes' => __('The number of physical writes of a key block to disk.'),
1213 'Last_query_cost' => __('The total cost of the last compiled query as computed by the query optimizer. Useful for comparing the cost of different query plans for the same query. The default value of 0 means that no query has been compiled yet.'),
1214 'Max_used_connections' => __('The maximum number of connections that have been in use simultaneously since the server started.'),
1215 'Not_flushed_delayed_rows' => __('The number of rows waiting to be written in INSERT DELAYED queues.'),
1216 'Opened_tables' => __('The number of tables that have been opened. If opened tables is big, your table cache value is probably too small.'),
1217 'Open_files' => __('The number of files that are open.'),
1218 'Open_streams' => __('The number of streams that are open (used mainly for logging).'),
1219 'Open_tables' => __('The number of tables that are open.'),
1220 'Qcache_free_blocks' => __('The number of free memory blocks in query cache. High numbers can indicate fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE statement.'),
1221 'Qcache_free_memory' => __('The amount of free memory for query cache.'),
1222 'Qcache_hits' => __('The number of cache hits.'),
1223 'Qcache_inserts' => __('The number of queries added to the cache.'),
1224 'Qcache_lowmem_prunes' => __('The number of queries that have been removed from the cache to free up memory for caching new queries. This information can help you tune the query cache size. The query cache uses a least recently used (LRU) strategy to decide which queries to remove from the cache.'),
1225 'Qcache_not_cached' => __('The number of non-cached queries (not cachable, or not cached due to the query_cache_type setting).'),
1226 'Qcache_queries_in_cache' => __('The number of queries registered in the cache.'),
1227 'Qcache_total_blocks' => __('The total number of blocks in the query cache.'),
1228 'Rpl_status' => __('The status of failsafe replication (not yet implemented).'),
1229 'Select_full_join' => __('The number of joins that do not use indexes. If this value is not 0, you should carefully check the indexes of your tables.'),
1230 'Select_full_range_join' => __('The number of joins that used a range search on a reference table.'),
1231 'Select_range_check' => __('The number of joins without keys that check for key usage after each row. (If this is not 0, you should carefully check the indexes of your tables.)'),
1232 'Select_range' => __('The number of joins that used ranges on the first table. (It\'s normally not critical even if this is big.)'),
1233 'Select_scan' => __('The number of joins that did a full scan of the first table.'),
1234 'Slave_open_temp_tables' => __('The number of temporary tables currently open by the slave SQL thread.'),
1235 'Slave_retried_transactions' => __('Total (since startup) number of times the replication slave SQL thread has retried transactions.'),
1236 'Slave_running' => __('This is ON if this server is a slave that is connected to a master.'),
1237 'Slow_launch_threads' => __('The number of threads that have taken more than slow_launch_time seconds to create.'),
1238 'Slow_queries' => __('The number of queries that have taken more than long_query_time seconds.'),
1239 'Sort_merge_passes' => __('The number of merge passes the sort algorithm has had to do. If this value is large, you should consider increasing the value of the sort_buffer_size system variable.'),
1240 'Sort_range' => __('The number of sorts that were done with ranges.'),
1241 'Sort_rows' => __('The number of sorted rows.'),
1242 'Sort_scan' => __('The number of sorts that were done by scanning the table.'),
1243 'Table_locks_immediate' => __('The number of times that a table lock was acquired immediately.'),
1244 'Table_locks_waited' => __('The number of times that a table lock could not be acquired immediately and a wait was needed. If this is high, and you have performance problems, you should first optimize your queries, and then either split your table or tables or use replication.'),
1245 'Threads_cached' => __('The number of threads in the thread cache. The cache hit rate can be calculated as Threads_created/Connections. If this value is red you should raise your thread_cache_size.'),
1246 'Threads_connected' => __('The number of currently open connections.'),
1247 'Threads_created' => __('The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. (Normally this doesn\'t give a notable performance improvement if you have a good thread implementation.)'),
1248 'Threads_running' => __('The number of threads that are not sleeping.')
1252 * define some alerts
1254 // name => max value before alert
1255 $alerts = array(
1256 // lower is better
1257 // variable => max value
1258 'Aborted_clients' => 0,
1259 'Aborted_connects' => 0,
1261 'Binlog_cache_disk_use' => 0,
1263 'Created_tmp_disk_tables' => 0,
1265 'Handler_read_rnd' => 0,
1266 'Handler_read_rnd_next' => 0,
1268 'Innodb_buffer_pool_pages_dirty' => 0,
1269 'Innodb_buffer_pool_reads' => 0,
1270 'Innodb_buffer_pool_wait_free' => 0,
1271 'Innodb_log_waits' => 0,
1272 'Innodb_row_lock_time_avg' => 10, // ms
1273 'Innodb_row_lock_time_max' => 50, // ms
1274 'Innodb_row_lock_waits' => 0,
1276 'Slow_queries' => 0,
1277 'Delayed_errors' => 0,
1278 'Select_full_join' => 0,
1279 'Select_range_check' => 0,
1280 'Sort_merge_passes' => 0,
1281 'Opened_tables' => 0,
1282 'Table_locks_waited' => 0,
1283 'Qcache_lowmem_prunes' => 0,
1285 'Qcache_free_blocks' => $server_status['Qcache_total_blocks'] / 5,
1286 'Slow_launch_threads' => 0,
1288 // depends on Key_read_requests
1289 // normaly lower then 1:0.01
1290 'Key_reads' => (0.01 * $server_status['Key_read_requests']),
1291 // depends on Key_write_requests
1292 // normaly nearly 1:1
1293 'Key_writes' => (0.9 * $server_status['Key_write_requests']),
1295 'Key_buffer_fraction' => 0.5,
1297 // alert if more than 95% of thread cache is in use
1298 'Threads_cached' => 0.95 * $server_variables['thread_cache_size']
1300 // higher is better
1301 // variable => min value
1302 //'Handler read key' => '> ',
1306 <table class="data sortable noclick" id="serverstatusvariables">
1307 <col class="namecol" />
1308 <col class="valuecol" />
1309 <col class="descrcol" />
1310 <thead>
1311 <tr>
1312 <th><?php echo __('Variable'); ?></th>
1313 <th><?php echo __('Value'); ?></th>
1314 <th><?php echo __('Description'); ?></th>
1315 </tr>
1316 </thead>
1317 <tbody>
1318 <?php
1320 $odd_row = false;
1321 foreach ($server_status as $name => $value) {
1322 $odd_row = !$odd_row;
1324 <tr class="<?php echo $odd_row ? 'odd' : 'even'; echo isset($allocationMap[$name])?' s_'.$allocationMap[$name]:''; ?>">
1325 <th class="name"><?php echo htmlspecialchars(str_replace('_',' ',$name)) . PMA_showMySQLDocu('server-status-variables', 'server-status-variables', false, 'statvar_' . $name); ?>
1326 </th>
1327 <td class="value"><span class="formatted"><?php
1328 if (isset($alerts[$name])) {
1329 if ($value > $alerts[$name]) {
1330 echo '<span class="attention">';
1331 } else {
1332 echo '<span class="allfine">';
1335 if ('%' === substr($name, -1, 1)) {
1336 echo PMA_formatNumber($value, 0, 2) . ' %';
1337 } elseif (strpos($name,'Uptime')!==FALSE) {
1338 echo PMA_timespanFormat($value);
1339 } elseif (is_numeric($value) && $value == (int) $value && $value > 1000) {
1340 echo PMA_formatNumber($value, 3, 1);
1341 } elseif (is_numeric($value) && $value == (int) $value) {
1342 echo PMA_formatNumber($value, 3, 0);
1343 } elseif (is_numeric($value)) {
1344 echo PMA_formatNumber($value, 3, 1);
1345 } else {
1346 echo htmlspecialchars($value);
1348 if (isset($alerts[$name])) {
1349 echo '</span>';
1351 ?></span><span style="display:none;" class="original"><?php echo $value; ?></span>
1352 </td>
1353 <td class="descr">
1354 <?php
1355 if (isset($strShowStatus[$name ])) {
1356 echo $strShowStatus[$name];
1359 if (isset($links[$name])) {
1360 foreach ($links[$name] as $link_name => $link_url) {
1361 if ('doc' == $link_name) {
1362 echo PMA_showMySQLDocu($link_url, $link_url);
1363 } else {
1364 echo ' <a href="' . $link_url . '">' . $link_name . '</a>' .
1365 "\n";
1368 unset($link_url, $link_name);
1371 </td>
1372 </tr>
1373 <?php
1376 </tbody>
1377 </table>
1378 <?php
1381 function printMonitor() {
1382 global $server_status, $server_db_isLocal;
1384 <div class="monitorLinks">
1385 <a href="#pauseCharts">
1386 <img src="themes/dot.gif" class="icon ic_play" alt="" />
1387 <?php echo __('Start Monitor'); ?>
1388 </a>
1389 <a href="#settingsPopup" rel="popupLink" style="display:none;">
1390 <img src="themes/dot.gif" class="icon ic_s_cog" alt="" />
1391 <?php echo __('Settings'); ?>
1392 </a>
1393 <a href="#monitorInstructionsDialog">
1394 <img src="themes/dot.gif" class="icon ic_b_help" alt="" />
1395 <?php echo __('Instructions/Setup'); ?>
1396 </a>
1397 <a href="#endChartEditMode" style="display:none;">
1398 <img src="themes/dot.gif" class="icon ic_s_okay" alt="" />
1399 <?php echo __('Done rearranging/editing charts'); ?>
1400 </a>
1401 </div>
1403 <div class="popupContent settingsPopup">
1404 <a href="#addNewChart">
1405 <img src="themes/dot.gif" class="icon ic_b_chart" alt="" />
1406 <?php echo __('Add chart'); ?>
1407 </a>
1408 <a href="#rearrangeCharts"><img class="icon ic_b_tblops" src="themes/dot.gif" width="16" height="16" alt=""> <?php echo __('Rearrange/edit charts'); ?></a>
1409 <div class="clearfloat paddingtop"></div>
1410 <div class="floatleft">
1411 <?php echo __('Refresh rate').'<br />'; refreshList('gridChartRefresh', 5, Array(2,3,4,5,10,20,40,60,120,300,600,1200)); ?><br>
1412 </div>
1413 <div class="floatleft">
1414 <?php echo __('Chart columns'); ?> <br />
1415 <select name="chartColumns">
1416 <option>1</option>
1417 <option>2</option>
1418 <option>3</option>
1419 <option>4</option>
1420 <option>5</option>
1421 <option>6</option>
1422 <option>7</option>
1423 <option>8</option>
1424 <option>9</option>
1425 <option>10</option>
1426 </select>
1427 </div>
1429 <div class="clearfloat paddingtop">
1430 <b><?php echo __('Chart arrangement'); ?></b> <?php echo PMA_showHint(__('The arrangement of the charts is stored to the browsers local storage. You may want to export it if you have a complicated set up.')); ?><br/>
1431 <a href="#importMonitorConfig"><?php echo __('Import'); ?></a>&nbsp;&nbsp;<a href="#exportMonitorConfig"><?php echo __('Export'); ?></a>&nbsp;&nbsp;<a href="#clearMonitorConfig"><?php echo __('Reset to default'); ?></a>
1432 </div>
1433 </div>
1435 <div id="monitorInstructionsDialog" title="<?php echo __('Monitor Instructions'); ?>" style="display:none;">
1436 <?php echo __('The phpMyAdmin Monitor can assist you in optimizing the server configuration and track down time intensive queries. For the latter you will need to set log_output to \'TABLE\' and have either the slow_query_log or general_log enabled. Note however, that the general_log produces a lot of data and increases server load by up to 15%'); ?>
1437 <?php if(PMA_MYSQL_INT_VERSION < 50106) { ?>
1439 <img class="icon ic_s_attention" src="themes/dot.gif" alt="">
1440 <?php
1441 echo __('Unfortunately your Database server does not support logging to table, which is a requirement for analyzing the database logs with phpMyAdmin. Logging to table is supported by MySQL 5.1.6 and onwards. You may still use the server charting features however.');
1443 </p>
1444 <?php
1445 } else {
1447 <p></p>
1448 <img class="ajaxIcon" src="<?php echo $GLOBALS['pmaThemeImage']; ?>ajax_clock_small.gif" alt="Loading">
1449 <div class="ajaxContent"></div>
1450 <div class="monitorUse" style="display:none;">
1451 <p></p>
1452 <?php
1453 echo __('<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click \'Start monitor\' your browser will refresh all displayed charts in a regular interval. You may add charts and change the refresh rate under \'Settings\', or remove any chart using the cog icon on each respective chart. <p>To display queries from the logs, select the relevant time span on any chart by holding down the left mouse button and panning over the chart. Once confirmed, this will load a table of grouped queries, there you may click on any occuring SELECT statements to further analyze them.</p>');
1456 <img class="icon ic_s_attention" src="themes/dot.gif" alt="">
1457 <?php
1458 echo __('<b>Please note:</b> Enabling the general_log may increase the server load by 5-15%. Also be aware that generating statistics from the logs is a load intensive task, so it is advisable to select only a small time span and to disable the general_log and empty its table once monitoring is not required any more.');
1460 </p>
1461 </div>
1462 <?php } ?>
1463 </div>
1465 <div id="addChartDialog" title="Add chart" style="display:none;">
1466 <div id="tabGridVariables">
1467 <p><input type="text" name="chartTitle" value="<?php echo __('Chart Title'); ?>" /></p>
1468 <?php if ($server_db_isLocal) { ?>
1469 <input type="radio" name="chartType" value="cpu" id="chartCPU">
1470 <label for="chartCPU"><?php echo __('CPU Usage'); ?></label><br/>
1472 <input type="radio" name="chartType" value="memory" id="chartMemory">
1473 <label for="chartMemory"><?php echo __('Memory Usage'); ?></label><br/>
1475 <input type="radio" name="chartType" value="swap" id="chartSwap">
1476 <label for="chartSwap"><?php echo __('Swap Usage'); ?></label><br/>
1477 <?php } ?>
1478 <input type="radio" name="chartType" value="variable" id="chartStatusVar" checked="checked">
1479 <label for="chartStatusVar"><?php echo __('Status variable(s)'); ?></label><br/>
1480 <div id="chartVariableSettings">
1481 <label for="chartSeries"><?php echo __('Select series:'); ?></label><br>
1482 <select id="chartSeries" name="varChartList" size="1">
1483 <option><?php echo __('Commonly monitored'); ?></option>
1484 <option>Processes</option>
1485 <option>Questions</option>
1486 <option>Connections</option>
1487 <option>Bytes_sent</option>
1488 <option>Bytes_received</option>
1489 <option>Threads_connected</option>
1490 <option>Created_tmp_disk_tables</option>
1491 <option>Handler_read_first</option>
1492 <option>Innodb_buffer_pool_wait_free</option>
1493 <option>Key_reads</option>
1494 <option>Open_tables</option>
1495 <option>Select_full_join</option>
1496 <option>Slow_queries</option>
1497 </select><br>
1498 <label for="variableInput"><?php echo __('or type variable name:'); ?> </label>
1499 <input type="text" name="variableInput" id="variableInput" />
1500 <p></p>
1501 <input type="checkbox" name="differentialValue" id="differentialValue" value="differential" checked="checked" />
1502 <label for="differentialValue"><?php echo __('Display as differential value'); ?></label><br>
1503 <input type="checkbox" id="useDivisor" name="useDivisor" value="1" />
1504 <label for="useDivisor"><?php echo __('Apply a divisor'); ?></label>
1505 <span class="divisorInput" style="display:none;">
1506 <input type="text" name="valueDivisor" size="4" value="1">
1507 (<a href="#kibDivisor"><?php echo __('KiB'); ?></a>, <a href="#mibDivisor"><?php echo __('MiB'); ?></a>)
1508 </span><br>
1510 <input type="checkbox" id="useUnit" name="useUnit" value="1" />
1511 <label for="useUnit"><?php echo __('Append unit to data values'); ?></label>
1513 <span class="unitInput" style="display:none;">
1514 <input type="text" name="valueUnit" size="4" value="">
1515 </span>
1517 <a href="#submitAddSeries"><b><?php echo __('Add this series'); ?></b></a>
1518 <span id="clearSeriesLink" style="display:none;">
1519 | <a href="#submitClearSeries"><?php echo __('Clear series'); ?></a>
1520 </span>
1521 </p>
1522 <?php echo __('Series in Chart:'); ?><br/>
1523 <span id="seriesPreview">
1524 <i><?php echo __('None'); ?></i>
1525 </span>
1526 </div>
1527 </div>
1528 </div>
1530 <!-- For generic use -->
1531 <div id="emptyDialog" title="Dialog" style="display:none;">
1532 </div>
1534 <div id="logAnalyseDialog" title="<?php echo __('Log statistics'); ?>" style="display:none;">
1535 <p> <?php echo __('Selected time range:'); ?>
1536 <input type="text" name="dateStart" class="datetimefield" value="" /> -
1537 <input type="text" name="dateEnd" class="datetimefield" value="" /></p>
1538 <input type="checkbox" id="limitTypes" value="1" checked="checked" />
1539 <label for="limitTypes">
1540 <?php echo __('Only retrieve SELECT,INSERT,UPDATE and DELETE Statements'); ?>
1541 </label>
1542 <br/>
1543 <input type="checkbox" id="removeVariables" value="1" checked="checked" />
1544 <label for="removeVariables">
1545 <?php echo __('Remove variable data in INSERT statements for better grouping'); ?>
1546 </label>
1548 <?php echo __('<p>Choose from which log you want the statistics to be generated from.</p> Results are grouped by query text.'); ?>
1549 </div>
1551 <div id="queryAnalyzerDialog" title="<?php echo __('Query analyzer'); ?>" style="display:none;">
1552 <textarea id="sqlquery"> </textarea>
1553 <p></p>
1554 <div class="placeHolder"></div>
1555 </div>
1557 <table border="0" class="clearfloat" id="chartGrid">
1559 </table>
1560 <div id="logTable">
1561 <br/>
1562 </div>
1564 <script type="text/javascript">
1565 variableNames = [ <?php
1566 $i=0;
1567 foreach ($server_status as $name=>$value) {
1568 if (is_numeric($value)) {
1569 if ($i++ > 0) echo ", ";
1570 echo "'".$name."'";
1573 ?> ];
1574 </script>
1575 <?php
1578 /* Builds a <select> list for refresh rates */
1579 function refreshList($name,$defaultRate=5, $refreshRates=Array(1, 2, 5, 10, 20, 40, 60, 120, 300, 600)) {
1581 <select name="<?php echo $name; ?>">
1582 <?php
1583 foreach ($refreshRates as $rate) {
1584 $selected = ($rate == $defaultRate)?' selected="selected"':'';
1586 if ($rate<60)
1587 echo '<option value="'.$rate.'"'.$selected.'>'.sprintf(_ngettext('%d second', '%d seconds', $rate), $rate).'</option>';
1588 else
1589 echo '<option value="'.$rate.'"'.$selected.'>'.sprintf(_ngettext('%d minute', '%d minutes', $rate/60), $rate/60).'</option>';
1592 </select>
1593 <?php
1597 * cleanup of some deprecated values
1599 * @param array &$server_status
1601 function cleanDeprecated(&$server_status) {
1602 $deprecated = array(
1603 'Com_prepare_sql' => 'Com_stmt_prepare',
1604 'Com_execute_sql' => 'Com_stmt_execute',
1605 'Com_dealloc_sql' => 'Com_stmt_close',
1608 foreach ($deprecated as $old => $new) {
1609 if (isset($server_status[$old]) && isset($server_status[$new])) {
1610 unset($server_status[$old]);
1616 * Sends the footer
1618 require './libraries/footer.inc.php';