Performance Schema Overview
The Performance Schema is a feature for monitoring server performance that inspects internal execution details at a low level with minimal overhead.
Introduction
SHOW ENGINES;
+--------------------+---------+----------------------------------+--------------+------+------------+
| Engine | Support | Comment | Transactions | XA | Savepoints |
+--------------------+---------+----------------------------------+--------------+------+------------+
| ... | | | | | |
| PERFORMANCE_SCHEMA | YES | Performance Schema | NO | NO | NO |
| ... | | | | | |
+--------------------+---------+----------------------------------+--------------+------+------------+USE performance_schemaSHOW TABLES;
+----------------------------------------------------+
| Tables_in_performance_schema |
+----------------------------------------------------+
| accounts |
...
| users |
+----------------------------------------------------+
80 rows in set (0.00 sec)Activating the Performance Schema
Enabling the Performance Schema
Listing Performance Schema Variables
Column Comments
See Also
Last updated
Was this helpful?

