Documentation Home
MySQL 8.4 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 39.8Mb
PDF (A4) - 39.9Mb
Man Pages (TGZ) - 257.9Kb
Man Pages (Zip) - 364.9Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb


MySQL 8.4 Reference Manual  /  ...  /  The ps_setup_enable_instrument() Procedure

30.4.4.10 Performance Schema 中的 ps_setup_enable_instrument() 过程

启用 Performance Schema 仪表盘的名称包含了参数的名称。产生一个结果集,指示了多少个仪表盘被启用。已经启用的仪表盘不计入。

  • in_pattern VARCHAR(128): 用于匹配仪表盘名称的值,该名称使用 %in_pattern% 作为 LIKE 模式匹配的操作符。

    值为 '' 匹配所有仪表盘。

启用特定的仪表盘:

mysql> CALL sys.ps_setup_enable_instrument('wait/lock/metadata/sql/mdl');
+----------------------+
| summary              |
+----------------------+
| Enabled 1 instrument |
+----------------------+

启用所有互斥锁仪表盘:

mysql> CALL sys.ps_setup_enable_instrument('mutex');
+-------------------------+
| summary                 |
+-------------------------+
| Enabled 177 instruments |
+-------------------------+