How to do it...

Enable a instrument from the sys schema:

mysql> CALL sys.ps_setup_enable_instrument('statement');+------------------------+| summary                |+------------------------+| Enabled 22 instruments |+------------------------+1 row in set (0.08 sec)Query OK, 0 rows affected (0.08 sec)

If you want to reset to default, do this:

mysql> CALL sys.ps_setup_reset_to_default(TRUE)\G*************************** 1. row ***************************status: Resetting: setup_actorsDELETE FROM performance_schema.setup_actors WHERE NOT (HOST = '%' AND USER = '%' AND `ROLE` = '%')1 row in set (0.01 sec)~*************************** 1. row ***************************status: Resetting: threadsUPDATE performance_schema.threads SET INSTRUMENTED = 'YES'1 row in ...

Get MySQL 8 Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.