@@ -1520,8 +1520,6 @@ mysql> SHOW FULL TABLES FROM ps;
15201520
15211521Disable all background thread instrumentation within Performance Schema.
15221522
1523- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1524-
15251523# #### Parameters
15261524
15271525None.
@@ -1543,8 +1541,6 @@ mysql> CALL sys.ps_setup_disable_background_threads();
15431541
15441542Disables instruments within Performance Schema matching the input pattern.
15451543
1546- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1547-
15481544# #### Parameters
15491545
15501546* in_pattern (VARCHAR (128 )): A LIKE pattern match (using " %in_pattern%" ) of events to disable
@@ -1588,8 +1584,6 @@ mysql> CALL sys.ps_setup_disable_instrument('');
15881584
15891585Disables consumers within Performance Schema matching the input pattern.
15901586
1591- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1592-
15931587# #### Parameters
15941588
15951589* consumer (VARCHAR (128 )): A LIKE pattern match (using " %consumer%" ) of consumers to disable
@@ -1624,8 +1618,6 @@ mysql> CALL sys.ps_setup_disable_consumers('stage');
16241618
16251619Disable the given connection/ thread in Performance Schema.
16261620
1627- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1628-
16291621# #### Parameters
16301622
16311623* in_connection_id (BIGINT ): The connection ID (PROCESSLIST_ID from performance_schema .threads or the ID shown within SHOW PROCESSLIST)
@@ -1657,8 +1649,6 @@ mysql> CALL sys.ps_setup_disable_thread(CONNECTION_ID());
16571649
16581650Enable all background thread instrumentation within Performance Schema.
16591651
1660- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1661-
16621652# #### Parameters
16631653
16641654None.
@@ -1680,8 +1670,6 @@ mysql> CALL sys.ps_setup_enable_background_threads();
16801670
16811671Enables consumers within Performance Schema matching the input pattern.
16821672
1683- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1684-
16851673# #### Parameters
16861674
16871675* consumer (VARCHAR (128 )): A LIKE pattern match (using " %consumer%" ) of consumers to enable
@@ -1716,8 +1704,6 @@ mysql> CALL sys.ps_setup_enable_consumers('waits');
17161704
17171705Enables instruments within Performance Schema matching the input pattern.
17181706
1719- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1720-
17211707# #### Parameters
17221708
17231709
@@ -1762,8 +1748,6 @@ mysql> CALL sys.ps_setup_enable_instrument('');
17621748
17631749Enable the given connection/ thread in Performance Schema.
17641750
1765- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
1766-
17671751# #### Parameters
17681752
17691753
@@ -2175,6 +2159,8 @@ It will also attempt to generate an EXPLAIN for the longest running example of t
21752159
21762160Note this may fail, as Performance Schema truncates long SQL_TEXT values (and hence the EXPLAIN will fail due to parse errors).
21772161
2162+ Requires the SUPER privilege for " SET sql_log_bin = 0;" .
2163+
21782164# #### Parameters
21792165
21802166* in_digest VARCHAR (32 ): The statement digest identifier you would like to analyze
@@ -2266,6 +2252,8 @@ Dumps all data within Performance Schema for an instrumented thread, to create a
22662252
22672253Each resultset returned from the procedure should be used for a complete graph
22682254
2255+ Requires the SUPER privilege for " SET sql_log_bin = 0;" .
2256+
22692257# #### Parameters
22702258
22712259* in_thread_id (INT ): The thread that you would like a stack trace for
@@ -2328,8 +2316,6 @@ mysql> CALL sys.ps_dump_thread_stack(25, CONCAT('/tmp/stack-', REPLACE(NOW(), '
23282316
23292317Truncates all summary tables within Performance Schema, resetting all aggregated instrumentation as a snapshot.
23302318
2331- Requires the SUPER privilege for " SET sql_log_bin = 0;" .
2332-
23332319# #### Parameters
23342320
23352321* in_verbose (BOOLEAN ): Whether to print each TRUNCATE statement before running
0 commit comments