mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
[t:4362] Add more checkpoint info to engine status. Refs #4362.
git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@38572 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
parent
4b91f7c961
commit
731d9ce4f1
1 changed files with 16 additions and 9 deletions
|
@ -1214,15 +1214,22 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) {
|
|||
STATPRINT("checkpoint client wait on mo lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_client_wait_on_cs);
|
||||
STATPRINT("checkpoint client wait on cs lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_sched);
|
||||
STATPRINT("checkpoint wait sched", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_client);
|
||||
STATPRINT("checkpoint wait client", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_txn);
|
||||
STATPRINT("checkpoint wait txn", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_other);
|
||||
STATPRINT("checkpoint wait other", buf);
|
||||
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_sched_cs);
|
||||
STATPRINT("checkpoint sched wait on cs lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_client_cs);
|
||||
STATPRINT("checkpoint client wait on cs lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_txn_cs);
|
||||
STATPRINT("checkpoint txn wait on cs lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_other_cs);
|
||||
STATPRINT("checkpoint other wait on cs lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_sched_mo);
|
||||
STATPRINT("checkpoint sched wait on mo lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_client_mo);
|
||||
STATPRINT("checkpoint client wait on mo lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_txn_mo);
|
||||
STATPRINT("checkpoint txn wait on mo lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.checkpoint_wait_other_mo);
|
||||
STATPRINT("checkpoint other wait on mo lock", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.cleaner_period);
|
||||
STATPRINT("cleaner period", buf);
|
||||
snprintf(buf, bufsiz, "%" PRIu64, engstat.cleaner_iterations);
|
||||
|
|
Loading…
Reference in a new issue