Skip to content

Commit 27525ca

Browse files
committed
Fix issue in Buffer Pool instead of Log Buffer Pool
1 parent 65b1c13 commit 27525ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mysqltuner.pl

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6282,11 +6282,11 @@ sub mysql_innodb {
62826282
. hr_bytes( $myvar{'innodb_log_buffer_size'} );
62836283
}
62846284
if ( defined $mystat{'Innodb_buffer_pool_pages_free'} ) {
6285-
infoprint " +-- InnoDB Log Buffer Free: "
6285+
infoprint " +-- InnoDB Buffer Free: "
62866286
. hr_bytes( $mystat{'Innodb_buffer_pool_pages_free'} ) . "";
62876287
}
62886288
if ( defined $mystat{'Innodb_buffer_pool_pages_total'} ) {
6289-
infoprint " +-- InnoDB Log Buffer Used: "
6289+
infoprint " +-- InnoDB Buffer Used: "
62906290
. hr_bytes( $mystat{'Innodb_buffer_pool_pages_total'} ) . "";
62916291
}
62926292
}

0 commit comments

Comments
 (0)