In MySQL 8.0, the engineers have added useful
meta-data to the table SETUP_INSTRUMENT
. This table
lists the classes of instrumented objects for which events can be
collected.
To the NAME
, ENABLES
and
TIMED
columns, were added PROPERTIES
,
VOLATILITY
and DOCUMENTATION
.
Let’s have a quick look at these new columns:
PROPERTIES can have the following values
-
global_statistics: only global summaries are available
for this instrument. Example:
memory/performance_schema/metadata_locks that
return the memory used for tableperformance_schema.metadata_locks
- …