MySQL - Show Global Status 整理


原文來源:MySQL 5.5 Reference Manual

部分翻譯取自:《MySQL_5.1中文參考手冊》

轉載請注明原文鏈接http://www.cnblogs.com/lenagt/archive/2012/06/06/2538240.html 謝謝。

------------------------------------------------------------------------------------------

Show global status

在Show global status輸出中的項。 5.1手冊中沒有的或者翻譯有問題的,都附帶5.5原文說明:

Aborted_clients

由於客戶端沒有正確關閉連接導致客戶端終止而中斷的連接數。

Aborted_connects

試圖連接到MySQL服務器而失敗的連接數。

Binlog_cache_disk_use

使用臨時二進制日志緩存但超過binlog_cache_size值並使用臨時文件來保存事務中的語句的事務數量。

Binlog_cache_use

使用臨時二進制日志緩存的事務數量。

Binlog_stmt_cache_disk_use

The number of nontransaction statements that used the binary log statement cache but that exceeded the value of binlog_stmt_cache_size and used a temporary file to store those statements.

當非事務語句使用二進制日志緩存,但是超出binlog_stmt_cache_size時,使用一個臨時文件來存放這些語句。

Binlog_stmt_cache_use

The number of nontransactional statements that used the binary log statement cache.

使用二進制日志緩存文件的非事務語句數量。

Bytes_received

從所有客戶端接收到的字節數。

Bytes_sent

發送給所有客戶端的字節數。

Com_admin_commands [ Com_xxx ]

Com_xxx 語句計數變量表示每個xxx 語句執行的次數。每類語句有一個狀態變量。例如,Com_delete和Com_insert分別統計DELETE 和INSERT語句執行的次數。

Com_xxx包括:

Com_alter_db

Com_alter_db_upgrade

Com_alter_event

Com_alter_function

Com_alter_procedure

Com_alter_server

Com_alter_table

Com_alter_tablespace

Com_analyze

Com_assign_to_keycache

Com_begin

Com_binlog

Com_call_procedure

Com_change_db

Com_change_master

Com_check

Com_checksum

Com_commit

Com_create_db

Com_create_event

Com_create_function

Com_create_index

Com_create_procedure

Com_create_server

Com_create_table

Com_create_trigger

Com_create_udf

Com_create_user

Com_create_view

Com_dealloc_sql

Com_delete

Com_delete_multi

Com_do

Com_drop_db

Com_drop_event

Com_drop_function

Com_drop_index

Com_drop_procedure

Com_drop_server

Com_drop_table

Com_drop_trigger

Com_drop_user

Com_drop_view

Com_empty_query

Com_execute_sql

Com_flush

Com_grant

Com_ha_close

Com_ha_open

Com_ha_read

Com_help

Com_insert

Com_insert_select

Com_install_plugin

Com_kill

Com_load

Com_lock_tables

Com_optimize

Com_preload_keys

Com_prepare_sql

Com_purge

Com_purge_before_date

Com_release_savepoint

Com_rename_table

Com_rename_user

Com_repair

Com_replace

Com_replace_select

Com_reset

Com_resignal

Com_revoke

Com_revoke_all

Com_rollback

Com_rollback_to_savepoint

Com_savepoint

Com_select

Com_set_option

Com_show_authors

Com_show_binlog_events

Com_show_binlogs

Com_show_charsets

Com_show_collations

Com_show_contributors

Com_show_create_db

Com_show_create_event

Com_show_create_func

Com_show_create_proc

Com_show_create_table

Com_show_create_trigger

Com_show_databases

Com_show_engine_logs

Com_show_engine_mutex

Com_show_engine_status

Com_show_errors

Com_show_events

Com_show_fields

Com_show_function_code

Com_show_function_status

Com_show_grants

Com_show_keys

Com_show_logs

Com_show_master_status

Com_show_new_master

Com_show_open_tables

Com_show_plugins

Com_show_privileges

Com_show_procedure_code

Com_show_procedure_status

Com_show_processlist

Com_show_profile

Com_show_profiles

Com_show_relaylog_events

Com_show_slave_hosts

Com_show_slave_status

Com_show_status

Com_show_storage_engines

Com_show_table_status

Com_show_tables

Com_show_triggers

Com_show_variables

Com_show_warnings

Com_signal

Com_slave_start

Com_slave_stop

Com_stmt_close

Com_stmt_execute

Com_stmt_fetch

Com_stmt_prepare

Com_stmt_reprepare

Com_stmt_reset

Com_stmt_send_long_data

Com_truncate

Com_uninstall_plugin

Com_unlock_tables

Com_update

Com_update_multi

Com_xa_commit

Com_xa_end

Com_xa_prepare

Com_xa_recover

Com_xa_rollback

Com_xa_start

Compression

客戶端是否使用了壓縮的連接協議。

Connections

試圖連接到(不管是否成功)MySQL服務器的連接數。

Created_tmp_disk_tables

服務器執行語句時在硬盤上自動創建的臨時表的數量。

Created_tmp_files

mysqld已經創建的臨時文件的數量。

Created_tmp_tables

服務器執行語句時自動創建的內存中的臨時表的數量。如果Created_tmp_disk_tables較大,你可能要增加tmp_table_size值使臨時表基於內存而不基於硬盤。

Delayed_errors

用INSERT DELAYED寫的出現錯誤的行數(可能為duplicate key)。

Delayed_insert_threads

使用的INSERT DELAYED處理器線程數。

Delayed_writes

寫入的INSERT DELAYED行數。

Flush_commands

執行的FLUSH語句數。

Handler_commit

內部提交語句數。

Handler_delete

行從表中刪除的次數。

Handler_discover

MySQL服務器可以問NDB CLUSTER存儲引擎是否知道某一名字的表。這被稱作發現。Handler_discover說明通過該方法發現的次數。

Handler_prepare

准備階段的兩階段提交操作計數器。

Handler_read_first

The number of times the first entry in an index was read. If this value 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.

索引中第一條被讀的次數。如果較高,它表明服務器正執行大量全索引掃描;例如,SELECT col1 FROM foo,假定col1有索引。

Handler_read_key

根據鍵讀一行的請求數。如果較高,說明查詢和表的索引正確。

Handler_read_last

The number of requests to read the last key in an index. With ORDER BY, the server will issue a first-key request followed by several next-key requests, whereas with With ORDER BY DESC, the server will issue a last-key request followed by several previous-key requests. This variable was added in MySQL 5.5.7.

查詢讀最后一個索引的請求數。當使用ORDER BY時,服務器優先發出使用第一個索引的請求,之后是使用其他索引。當使用ORDER BY DESC時,服務器優先發出使用最后一個索引的請求, 之后是前幾個索引的請求。

Handler_read_next

按照鍵順序讀下一行的請求數。如果你用范圍約束或如果執行索引掃描來查詢索引列,該值增加。

Handler_read_prev

按照鍵順序讀前一行的請求數。該讀方法主要用於優化ORDER BY ... DESC

Handler_read_rnd

根據固定位置讀一行的請求數。如果你正執行大量查詢並需要對結果進行排序該值較高。你可能使用了大量需要MySQL掃描整個表的查詢或你的連接沒有正確使用鍵。

Handler_read_rnd_next

在數據文件中讀下一行的請求數。如果你正進行大量的表掃描,該值較高。通常說明你的表索引不正確或寫入的查詢沒有利用索引。

Handler_rollback

內部ROLLBACK語句的數量。

Handler_savepoint

The number of requests for a storage engine to place a savepoint.

存儲引擎放置一個保存點的請求數。

Handler_savepoint_rollback

The number of requests for a storage engine to roll back to a savepoint.

存儲引擎回滾到一個保存點的請求。

Handler_update

在表內更新一行的請求數

Handler_write

在表內插入一行的請求數。

Innodb_buffer_pool_pages_data

包含數據的頁數(臟或干凈)。

Innodb_buffer_pool_pages_dirty

當前的臟頁數。

Innodb_buffer_pool_pages_flushed

要求清空的緩沖池頁數。

Innodb_buffer_pool_pages_free

空頁數。

Innodb_buffer_pool_pages_latched

在InnoDB緩沖池中鎖定的頁數。這是當前正讀或寫或由於其它原因不能清空或刪除的頁數。

Innodb_buffer_pool_pages_misc

忙的頁數,因為它們已經被分配優先用作管理,例如行鎖定或適用的哈希索引。該值還可以計算為Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data。

Innodb_buffer_pool_pages_total

緩沖池總大小(頁數)。

Innodb_buffer_pool_read_ahead

The number of pages read into the InnoDB buffer pool by the read-ahead background thread.

后台預讀線程讀取到Innodb緩沖池的頁的數量。

Innodb_buffer_pool_read_ahead_evicted

The number of pages read into the InnoDB buffer pool by the read-ahead background thread that were subsequently evicted without having been accessed by queries.

后台預讀線程讀取到Innodb緩沖池的頁由於未被查詢使用而驅逐的數量。

Innodb_buffer_pool_read_requests

InnoDB已經完成的邏輯讀請求數。

Innodb_buffer_pool_reads

不能滿足InnoDB必須單頁讀取的緩沖池中的邏輯讀數量。

Innodb_buffer_pool_wait_free

一般情況,通過后台向InnoDB緩沖池寫。但是,如果需要讀或創建頁,並且沒有干凈的頁可用,則它還需要先等待頁面清空。該計數器對等待實例進行記數。如果已經適當設置緩沖池大小,該值應小。

Innodb_buffer_pool_write_requests

向InnoDB緩沖池的寫數量。

Innodb_data_fsyncs

fsync()操作數。

Innodb_data_pending_fsyncs

當前掛起的fsync()操作數。

Innodb_data_pending_reads

當前掛起的讀數。

Innodb_data_pending_writes

當前掛起的寫數。

Innodb_data_read

至此已經讀取的數據數量(字節)

Innodb_data_reads

數據讀總數量。

Innodb_data_writes

數據寫總數量。

Innodb_data_written

至此已經寫入的數據量(字節)。

Innodb_dblwr_pages_written

The number of pages that have been written for doublewrite operations.

雙寫操作執行的頁的數量。

Innodb_dblwr_writes

The number of doublewrite operations that have been performed.

已經執行的雙寫操作的數量。

Innodb_have_atomic_builtins

Indicates whether the server was built with atomic instructions.

指示服務器是否建立原子操作指令。

Innodb_log_waits

我們必須等待的時間,因為日志緩沖區太小,我們在繼續前必須先等待對它清空。

Innodb_log_write_requests

日志寫請求數。

Innodb_log_writes

向日志文件的物理寫數量。

Innodb_os_log_fsyncs

向日志文件完成的fsync()寫數量

Innodb_os_log_pending_fsyncs

掛起的日志文件fsync()操作數量。

Innodb_os_log_pending_writes

掛起的日志文件寫操作。

Innodb_os_log_written

寫入日志文件的字節數。

Innodb_page_size

編譯的InnoDB頁大小(默認16KB)。許多值用頁來記數;頁的大小很容易轉換為字節。

Innodb_pages_created

創建的頁數。

Innodb_pages_read

讀取的頁數。

Innodb_pages_written

寫入的頁數。

Innodb_row_lock_current_waits

當前等待的待鎖定的行數。

Innodb_row_lock_time

行鎖定花費的總時間,單位毫秒。

Innodb_row_lock_time_avg

行鎖定的平均時間,單位毫秒。

Innodb_row_lock_time_max

行鎖定的最長時間,單位毫秒。

Innodb_row_lock_waits

一行鎖定必須等待的時間數。

Innodb_rows_deleted

從InnoDB表刪除的行數。

Innodb_rows_inserted

插入到InnoDB表的行數。

Innodb_rows_read

從InnoDB表讀取的行數。

Innodb_rows_updated

InnoDB表內更新的行數。

Innodb_truncated_status_writes

The number of times output from the SHOW ENGINE INNODB STATUS is truncated. Monitoring applications that parse the output from this command can test this value before and after issuing the SHOW ENGINE command, to confirm if the output is complete or not.

SHOW ENGINE INNODB STATUS 的輸出時間將被截斷。監控程序解析這個輸出,可以測試這項之前和之后的值,以確認輸出是否完整。

Key_blocks_not_flushed

鍵緩存內已經更改但還沒有清空到硬盤上的鍵的數據塊數量。

Key_blocks_unused

鍵緩存內未使用的塊數量。你可以使用該值來確定使用了多少鍵緩存;

Key_blocks_used

鍵緩存內使用的塊數量。該值為高水平線標記,說明已經同時最多使用了多少塊。

Key_read_requests

從緩存讀鍵的數據塊的請求數。

Key_reads

從硬盤讀取鍵的數據塊的次數。如果Key_reads較大,則Key_buffer_size值可能太小。可以用Key_reads/Key_read_requests計算緩存損失率。

Key_write_requests

將鍵的數據塊寫入緩存的請求數。

Key_writes

向硬盤寫入將鍵的數據塊的物理寫操作的次數。

Last_query_cost

用查詢優化器計算的最后編譯的查詢的總成本。用於對比同一查詢的不同查詢方案的成本。默認值0表示還沒有編譯查詢。默認值是0。Last_query_cost具有會話范圍。

Max_used_connections

服務器啟動后已經同時使用的連接的最大數量。

MySQL Cluster Status Variables

Ndb_api_bytes_received_count

Ndb_api_bytes_received_count_session

Ndb_api_bytes_received_count_slave

Ndb_api_bytes_sent_count

Ndb_api_bytes_sent_count_session

Ndb_api_bytes_sent_count_slave

Ndb_api_event_bytes_count

Ndb_api_event_bytes_count_injector

Ndb_api_event_data_count

Ndb_api_event_data_count_injector

Ndb_api_event_nondata_count

Ndb_api_event_nondata_count_injector

Ndb_api_pk_op_count

Ndb_api_pk_op_count_session

Ndb_api_pk_op_count_slave

Ndb_api_pruned_scan_count

Ndb_api_pruned_scan_count_session

Ndb_api_pruned_scan_count_slave

Ndb_api_range_scan_count

Ndb_api_range_scan_count_session

Ndb_api_range_scan_count_slave

Ndb_api_read_row_count

Ndb_api_read_row_count_session

Ndb_api_read_row_count_slave

Ndb_api_scan_batch_count

Ndb_api_scan_batch_count_session

Ndb_api_scan_batch_count_slave

Ndb_api_table_scan_count

Ndb_api_table_scan_count_session

Ndb_api_table_scan_count_slave

Ndb_api_trans_abort_count

Ndb_api_trans_abort_count_session

Ndb_api_trans_abort_count_slave

Ndb_api_trans_close_count

Ndb_api_trans_close_count_session

Ndb_api_trans_close_count_slave

Ndb_api_trans_commit_count

Ndb_api_trans_commit_count_session

Ndb_api_trans_commit_count_slave

Ndb_api_trans_local_read_row_count

Ndb_api_trans_local_read_row_count_session

Ndb_api_trans_local_read_row_count_slave

Ndb_api_trans_start_count

Ndb_api_trans_start_count_session

Ndb_api_trans_start_count_slave

Ndb_api_uk_op_count

Ndb_api_uk_op_count_session

Ndb_api_uk_op_count_slave

Ndb_api_wait_exec_complete_count

Ndb_api_wait_exec_complete_count_session

Ndb_api_wait_exec_complete_count_slave

Ndb_api_wait_meta_request_count

Ndb_api_wait_meta_request_count_session

Ndb_api_wait_meta_request_count_slave

Ndb_api_wait_nanos_count

Ndb_api_wait_nanos_count_session

Ndb_api_wait_nanos_count_slave

Ndb_api_wait_scan_result_count

Ndb_api_wait_scan_result_count_session

Ndb_api_wait_scan_result_count_slave

ndb_cluster_connection_pool

Ndb_cluster_node_id

Ndb_config_from_host

Ndb_conflict_fn_epoch

Ndb_conflict_fn_epoch_trans

Ndb_conflict_fn_max

Ndb_conflict_fn_old

Ndb_conflict_trans_conflict_commit_count

Ndb_conflict_trans_detect_iter_count

Ndb_conflict_trans_reject_count

Ndb_conflict_trans_row_conflict_count

Ndb_conflict_trans_row_reject_count

ndb_execute_count

ndb-nodeid

Ndb_number_of_data_nodes

ndb_pruned_scan_count

Ndb_pushed_queries_defined

Ndb_pushed_queries_dropped

Ndb_pushed_queries_executed

ndb_pushed_reads

ndb_scan_count

Not_flushed_delayed_rows

等待寫入INSERT DELAY隊列的行數。

Open_files

打開的文件的數目。

Open_streams

打開的流的數量(主要用於記錄)。

Open_table_definitions

The number of cached .frm files.

被緩存的.FRM文件數量

Open_tables

當前打開的表的數量。

Opened_files

已經打開的表的數量。如果Opened_tables較大,table_cache 值可能太小。

Opened_table_definitions

The number of .frm files that have been cached.

被緩存過的.FRM文件的數量。

Opened_tables

已經打開的表的數量。如果Opened_tables較大,table_cache 值可能太小。

Performance Schema Status Variables

The Performance Schema implements several status variables that provide information about instrumentation that could not be loaded or created due to memory constraints:

性能架構提供了幾個變量,有關儀器儀表的信息由於內存限制無法被加載或創建:

Performance_schema_cond_classes_lost

Performance_schema_cond_instances_lost

Performance_schema_file_classes_lost

Performance_schema_file_handles_lost

Performance_schema_file_instances_lost

Performance_schema_locker_lost

Performance_schema_mutex_classes_lost

Performance_schema_mutex_instances_lost

Performance_schema_rwlock_classes_lost

Performance_schema_rwlock_instances_lost

Performance_schema_table_handles_lost

Performance_schema_table_instances_lost

Performance_schema_thread_classes_lost

Performance_schema_thread_instances_lost

Prepared_stmt_count

The current number of prepared statements. (The maximum number of statements is given by the max_prepared_stmt_count system variable.)

預處理語句的數量。(語句的最大數量值是由系統變量max_prepared_stmt_count決定的。)

Qcache_free_blocks

查詢緩存內自由內存塊的數量。

Qcache_free_memory

用於查詢緩存的自由內存的數量。

Qcache_hits

查詢緩存被訪問的次數。

Qcache_inserts

加入到緩存的查詢數量。

Qcache_lowmem_prunes

由於內存較少從緩存刪除的查詢數量。

Qcache_not_cached

非緩存查詢數(不可緩存,或由於query_cache_type設定值未緩存)。

Qcache_queries_in_cache

登記到緩存內的查詢的數量。

Qcache_total_blocks

查詢緩存內的總塊數。

Queries

Questions

已經發送給服務器的查詢的個數。

RPL_semi_sync_xxx

以下變量只有當Master安裝了半同步復制插件時可用。

Rpl_semi_sync_master_clients

The number of semisynchronous slaves.

半同步復制的Slave數量。

Rpl_semi_sync_master_net_avg_wait_time

The average time in microseconds the master waited for a slave reply.

主等待從機響應的平均時間,以微秒為單位。

Rpl_semi_sync_master_net_wait_time

The total time in microseconds the master waited for slave replies.

主等待從機響應的總時間。

Rpl_semi_sync_master_net_waits

The total number of times the master waited for slave replies.

主等待從機響應的總次數。

Rpl_semi_sync_master_no_times

The number of times the master turned off semisynchronous replication.

主機關閉半同步復制的次數

Rpl_semi_sync_master_no_tx

The number of commits that were not acknowledged successfully by a slave.

Slave端未確認成功的提交數。

Rpl_semi_sync_master_status

Whether semisynchronous replication currently is operational on the master. The value is ON if the plugin has been enabled and a commit acknowledgment has occurred. It is OFF if the plugin is not enabled or the master has fallen back to asynchronous replication due to commit acknowledgment timeout.

無論半同步復制目前是否在主上運行。如果插件已經啟用並且提交已經確認,則值為ON;如果插件沒有啟用或者主機由於提交超時回落到異步同步時,值為OFF。

Rpl_semi_sync_master_timefunc_failures

The number of times the master failed when calling time functions such as gettimeofday().

主機調用類似gettimeofday()的時間函數失敗的次數。

Rpl_semi_sync_master_tx_avg_wait_time

The average time in microseconds the master waited for each transaction.

主機等待每個事務的平均時間。

Rpl_semi_sync_master_tx_wait_time

The total time in microseconds the master waited for transactions.

主機等待事務的總時間。

Rpl_semi_sync_master_tx_waits

The total number of times the master waited for transactions.

主機等待事務的總次數。

Rpl_semi_sync_master_wait_pos_backtraverse

The total number of times the master waited for an event with binary coordinates lower than events waited for previously. This can occur when the order in which transactions start waiting for a reply is different from the order in which their binary log events are written.

主機等待一個二進制坐標的時間低於先前事務的等待時間的總次數。當事務開始等待答復的順序不同於事務寫入全日志的順序時,可能發生這種情況。

Rpl_semi_sync_master_wait_sessions

The number of sessions currently waiting for slave replies.

會話通常等待Slave答復的次數。

Rpl_semi_sync_master_yes_tx

The number of commits that were acknowledged successfully by a slave.

提交被Slave確認成功的次數。

Rpl_semi_sync_slave_status

Whether semisynchronous replication currently is operational on the slave. This is ON if the plugin has been enabled and the slave I/O thread is running, OFF otherwise.

無論半同步復制是否在Slave端運行。如果插件被啟用並且Slave I/O線程正在運行,則顯示ON,否則顯示OFF。

Rpl_status

The status of fail-safe replication (not implemented). This variable is unused and is removed in MySQL 5.6.

不安全而失敗復制的狀態(不執行)。這個變量沒有啟用且在MySQL 5.6版本中移除。

Select_full_join

沒有使用索引的聯接的數量。如果該值不為0,你應仔細檢查表的索引。

Select_full_range_join

在引用的表中使用范圍搜索的聯接的數量。

Select_range

在第一個表中使用范圍的聯接的數量。一般情況不是關鍵問題,即使該值相當大。

Select_range_check

在每一行數據后對鍵值進行檢查的不帶鍵值的聯接的數量。如果不為0,你應仔細檢查表的索引。

Select_scan

對第一個表進行完全掃描的聯接的數量。

Slave_heartbeat_period

Shows the replication heartbeat interval (in seconds) on a replication slave.

顯示一個Slave的復制心跳間隔。

Slave_open_temp_tables

當前由從SQL線程打開的臨時表的數量。

Slave_received_heartbeats

This counter increments with each replication heartbeat received by a replication slave since the last time that the slave was restarted or reset, or a CHANGE MASTER TO statement was issued.

累計每個SLAVE從最后一次啟動、復位或更換master到現在收到的心跳數。

Slave_retried_transactions

The total number of times since startup that the replication slave SQL thread has retried transactions.

從啟動以來SLAVE端嘗試事務的總次數。

Slave_running

如果該服務器是連接到主服務器的從服務器,則該值為ON。

Slow_launch_threads

創建時間超過slow_launch_time秒的線程數。

Slow_queries

查詢時間超過long_query_time秒的查詢的個數

Sort_merge_passes

排序算法已經執行的合並的數量。如果這個變量值較大,應考慮增加sort_buffer_size系統變量的值。

Sort_range

在范圍內執行的排序的數量。

Sort_rows

已經排序的行數。

Sort_scan

通過掃描表完成的排序的數量。

Ssl_xxx

用於SSL連接的變量。包括:

Ssl_accept_renegotiates

Ssl_accepts

Ssl_callback_cache_hits

Ssl_cipher

Ssl_cipher_list

Ssl_client_connects

Ssl_connect_renegotiates

Ssl_ctx_verify_depth

Ssl_ctx_verify_mode

Ssl_default_timeout

Ssl_finished_accepts

Ssl_finished_connects

Ssl_session_cache_hits

Ssl_session_cache_misses

Ssl_session_cache_mode

Ssl_session_cache_overflows

Ssl_session_cache_size

Ssl_session_cache_timeouts

Ssl_sessions_reused

Ssl_used_session_cache_entries

Ssl_verify_depth

Ssl_verify_mode

Ssl_version

Table_locks_immediate

立即獲得的表的鎖的次數。

Table_locks_waited

不能立即獲得的表的鎖的次數。如果該值較高,並且有性能問題,你應首先優化查詢,然后拆分表或使用復制

Tc_log_max_pages_used

Tc_log_page_size

Tc_log_page_waits

Threads_cached

線程緩存內的線程的數量。

Threads_connected

當前打開的連接的數量。

Threads_created

創建用來處理連接的線程數。如果Threads_created較大,你可能要增加thread_cache_size值。緩存訪問率的計算方法Threads_created/Connections。

Threads_running

激活的(非睡眠狀態)線程數。

Uptime

服務器已經運行的時間(以秒為單位)。

Uptime_since_flush_status

The number of seconds since the most recent FLUSH STATUS statement.

從上次執行FLUSH STATUS語句后經過的時間。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM