10bet网址
MySQL 5.7 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr)- 36.3Mb
PDF (A4)- 36.3Mb
Man Pages (TGZ)- 235.7Kb
Man Pages (Zip)- 347.2Kb
Info (Gzip)- 3.3Mb
Info (Zip)- 3.3Mb
Excerpts from this Manual

24.4.16 The INFORMATION_SCHEMA INNODB_METRICS Table

INNODB_METRICStable provides a wide variety ofInnoDBperformance information, complementing the specific focus areas of the Performance Schema tables forInnoDB. With simple queries, you can check the overall health of the system. With more detailed queries, you can diagnose issues such as performance bottlenecks, resource shortages, and application issues.

Each monitor represents a point within theInnoDBsource code that is instrumented to gather counter information. Each counter can be started, stopped, and reset. You can also perform these actions for a group of counters using their common module name.

By default, relatively little data is collected. To start, stop, and reset counters, set one of the system variablesinnodb_monitor_enable,innodb_monitor_disable,innodb_monitor_reset, orinnodb_monitor_reset_all, using the name of the counter, the name of the module, a wildcard match for such a name using the%character, or the special keywordall.

For usage information, seeSection 14.16.6, “InnoDB INFORMATION_SCHEMA Metrics Table”.

INNODB_METRICStable has these columns:

  • NAME

    A unique name for the counter.

  • SUBSYSTEM

    的aspect ofInnoDBthat the metric applies to.

  • COUNT

    的value since the counter was enabled.

  • MAX_COUNT

    的maximum value since the counter was enabled.

  • MIN_COUNT

    的minimum value since the counter was enabled.

  • AVG_COUNT

    的average value since the counter was enabled.

  • COUNT_RESET

    的counter value since it was last reset. (The_RESETcolumns act like the lap counter on a stopwatch: you can measure the activity during some time interval, while the cumulative figures are still available inCOUNT,MAX_COUNT, and so on.)

  • MAX_COUNT_RESET

    的maximum counter value since it was last reset.

  • MIN_COUNT_RESET

    的minimum counter value since it was last reset.

  • AVG_COUNT_RESET

    的average counter value since it was last reset.

  • TIME_ENABLED

    的timestamp of the last start.

  • TIME_DISABLED

    的timestamp of the last stop.

  • TIME_ELAPSED

    的elapsed time in seconds since the counter started.

  • TIME_RESET

    的timestamp of the last reset.

  • STATUS

    Whether the counter is still running (enabled) or stopped (disabled).

  • TYPE

    Whether the item is a cumulative counter, or measures the current value of some resource.

  • COMMENT

    的counter description.

Example

mysql> SELECT * FROM INFORMATION_SCHEMA.INNODB_METRICS WHERE NAME='dml_inserts'\G *************************** 1. row *************************** NAME: dml_inserts SUBSYSTEM: dml COUNT: 3 MAX_COUNT: 3 MIN_COUNT: NULL AVG_COUNT: 0.046153846153846156 COUNT_RESET: 3 MAX_COUNT_RESET: 3 MIN_COUNT_RESET: NULL AVG_COUNT_RESET: NULL TIME_ENABLED: 2014-12-04 14:18:28 TIME_DISABLED: NULL TIME_ELAPSED: 65 TIME_RESET: NULL STATUS: enabled TYPE: status_counter COMMENT: Number of rows inserted

Notes

  • You must have thePROCESSprivilege to query this table.

  • Use theINFORMATION_SCHEMACOLUMNStable or theSHOW COLUMNSstatement to view additional information about the columns of this table, including data types and default values.

  • Transaction counterCOUNTvalues may differ from the number of transaction events reported in Performance SchemaEVENTS_TRANSACTIONS_SUMMARYtables.InnoDBcounts only those transactions that it executes, whereas Performance Schema collects events for all non-aborted transactions initiated by the server, including empty transactions.