Non importance changes
This commit is contained in:
parent
915be0fbe4
commit
f4e46cdbc0
1 changed files with 3 additions and 4 deletions
|
@ -3413,7 +3413,7 @@ sub mysqsl_pfs {
|
||||||
# Process per allocated memory
|
# Process per allocated memory
|
||||||
subheaderprint "Performance schema: Process per allocated memory";
|
subheaderprint "Performance schema: Process per allocated memory";
|
||||||
$nbL=1;
|
$nbL=1;
|
||||||
for my $lQuery(select_array ("select concat(user,concat('/', IFNULL(Command,'NONE'))) AS PROC, current_memory from sys.processlist ORDER BY current_memory DESC;" )) {
|
for my $lQuery(select_array ("select concat(user,concat('/', IFNULL(Command,'NONE'))) AS PROC, current_memory from sys.processlist ORDER BY current_memory DESC;" )) {
|
||||||
infoprint " +-- $nbL: $lQuery";
|
infoprint " +-- $nbL: $lQuery";
|
||||||
$nbL++;
|
$nbL++;
|
||||||
}
|
}
|
||||||
|
@ -3780,7 +3780,7 @@ sub mysqsl_pfs {
|
||||||
|
|
||||||
subheaderprint "Performance schema: Top 15 Tables using InnoDB buffer";
|
subheaderprint "Performance schema: Top 15 Tables using InnoDB buffer";
|
||||||
$nbL=1;
|
$nbL=1;
|
||||||
for my $lQuery(select_array ('Select table_schema, table_name,innodb_buffer_allocated from sys.schema_table_statistics_with_buffer where innodb_buffer_allocated IS NOT NULL ORDER BY innodb_buffer_allocated DESC LIMIT 15;')) {
|
for my $lQuery(select_array ('select table_schema, table_name,innodb_buffer_allocated from sys.schema_table_statistics_with_buffer where innodb_buffer_allocated IS NOT NULL ORDER BY innodb_buffer_allocated DESC LIMIT 15;')) {
|
||||||
infoprint " +-- $nbL: $lQuery";
|
infoprint " +-- $nbL: $lQuery";
|
||||||
$nbL++;
|
$nbL++;
|
||||||
}
|
}
|
||||||
|
@ -3789,7 +3789,7 @@ sub mysqsl_pfs {
|
||||||
|
|
||||||
subheaderprint "Performance schema: Top 15 Tables with InnoDB buffer free";
|
subheaderprint "Performance schema: Top 15 Tables with InnoDB buffer free";
|
||||||
$nbL=1;
|
$nbL=1;
|
||||||
for my $lQuery(select_array ('Select table_schema, table_name,innodb_buffer_free from sys.schema_table_statistics_with_buffer where innodb_buffer_allocated IS NOT NULL ORDER BY innodb_buffer_free DESC LIMIT 15;')) {
|
for my $lQuery(select_array ('select table_schema, table_name,innodb_buffer_free from sys.schema_table_statistics_with_buffer where innodb_buffer_allocated IS NOT NULL ORDER BY innodb_buffer_free DESC LIMIT 15;')) {
|
||||||
infoprint " +-- $nbL: $lQuery";
|
infoprint " +-- $nbL: $lQuery";
|
||||||
$nbL++;
|
$nbL++;
|
||||||
}
|
}
|
||||||
|
@ -5441,4 +5441,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
# cperl-indent-level: 8
|
# cperl-indent-level: 8
|
||||||
# perl-indent-level: 8
|
# perl-indent-level: 8
|
||||||
# End:
|
# End:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue