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


20.7.9.1 启用或禁用组复制性能监控

要从命令行启用所有组复制性能监控,请在您选择的SQL客户端中运行以下命令:

        UPDATE performance_schema.setup_instruments SET ENABLED = 'YES' 
        WHERE NAME LIKE 'memory/group_rpl/%';

要从命令行禁用所有组复制性能监控,请在您选择的SQL客户端中运行以下命令:

        UPDATE performance_schema.setup_instruments SET ENABLED = 'NO' 
        WHERE NAME LIKE 'memory/group_rpl/%';

要在服务器启动时启用所有组复制性能监控,请将以下内容添加到您的选项文件中:

        [mysqld]
        performance-schema-instrument='memory/group_rpl/%=ON'

要在服务器启动时禁用所有组复制性能监控,请将以下内容添加到您的选项文件中:

        [mysqld]
        performance-schema-instrument='memory/group_rpl/%=OFF'

要单独启用或禁用该组中的特定指标,替换通配符(*)为指标的全名。

对于更多信息,请参阅第29.3节,“性能_schema启动配置”第29.4节,“性能_schema运行时配置”