Fix issue in Buffer Pool instead of Log Buffer Pool
This commit is contained in:
parent
65b1c138a5
commit
27525ca922
1 changed files with 2 additions and 2 deletions
4
mysqltuner.pl
Executable file → Normal file
4
mysqltuner.pl
Executable file → Normal file
|
@ -6282,11 +6282,11 @@ sub mysql_innodb {
|
|||
. hr_bytes( $myvar{'innodb_log_buffer_size'} );
|
||||
}
|
||||
if ( defined $mystat{'Innodb_buffer_pool_pages_free'} ) {
|
||||
infoprint " +-- InnoDB Log Buffer Free: "
|
||||
infoprint " +-- InnoDB Buffer Free: "
|
||||
. hr_bytes( $mystat{'Innodb_buffer_pool_pages_free'} ) . "";
|
||||
}
|
||||
if ( defined $mystat{'Innodb_buffer_pool_pages_total'} ) {
|
||||
infoprint " +-- InnoDB Log Buffer Used: "
|
||||
infoprint " +-- InnoDB Buffer Used: "
|
||||
. hr_bytes( $mystat{'Innodb_buffer_pool_pages_total'} ) . "";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue