Merge pull request #629 from longradix/master
[Patch] Legibility and typos, mark 6
This commit is contained in:
commit
15b07f5c0c
1 changed files with 12 additions and 12 deletions
|
@ -3622,7 +3622,7 @@ sub mysql_stats {
|
|||
. $mystat{'Binlog_cache_use'}
|
||||
. " Total)";
|
||||
push( @generalrec,
|
||||
"Increase binlog_cache_size (Actual value: "
|
||||
"Increase binlog_cache_size (current value: "
|
||||
. $myvar{'binlog_cache_size'}
|
||||
. ")" );
|
||||
push( @adjvars,
|
||||
|
@ -6006,7 +6006,7 @@ sub mysql_innodb {
|
|||
$myvar{'innodb_buffer_pool_size'} /
|
||||
$myvar{'innodb_log_files_in_group'} / 4
|
||||
)
|
||||
. ") if possible, so InnoDB total log files size equals 25% of buffer pool size."
|
||||
. ") if possible, so InnoDB total log file size equals 25% of buffer pool size."
|
||||
);
|
||||
if ( mysql_version_le( 5, 6, 2 ) ) {
|
||||
push( @generalrec,
|
||||
|
@ -6146,7 +6146,7 @@ sub mysql_innodb {
|
|||
. " total)";
|
||||
}
|
||||
else {
|
||||
goodprint "InnoDB Write log efficiency: "
|
||||
goodprint "InnoDB Write Log efficiency: "
|
||||
. $mycalc{'pct_write_efficiency'} . "% ("
|
||||
. ( $mystat{'Innodb_log_write_requests'} -
|
||||
$mystat{'Innodb_log_writes'} )
|
||||
|
@ -6222,7 +6222,7 @@ sub mysql_databases {
|
|||
subheaderprint "Database Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Database metrics from information schema are missing in this version";
|
||||
"Database metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -6453,7 +6453,7 @@ sub mysql_tables {
|
|||
subheaderprint "Table Column Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Database metrics from information schema are missing in this version";
|
||||
"Table column metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
if ( mysql_version_ge(8) and not mysql_version_eq(10) ) {
|
||||
|
@ -6561,7 +6561,7 @@ sub mysql_indexes {
|
|||
subheaderprint "Indexes Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Index metrics from information schema are missing in this version";
|
||||
"Index metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -6688,7 +6688,7 @@ sub mysql_views() {
|
|||
subheaderprint "Views Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Index metrics from information schema are missing in this version";
|
||||
"Views metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -6697,7 +6697,7 @@ sub mysql_routines() {
|
|||
subheaderprint "Routines Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Index metrics from information schema are missing in this version";
|
||||
"Routines metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -6706,7 +6706,7 @@ sub mysql_triggers() {
|
|||
subheaderprint "Triggers Metrics";
|
||||
unless ( mysql_version_ge( 5, 5 ) ) {
|
||||
infoprint
|
||||
"Skip Index metrics from information schema are missing in this version";
|
||||
"Trigger metrics from information schema are missing in this version. Skipping...";
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -6955,7 +6955,7 @@ You must provide the remote server's total memory when connecting to other serve
|
|||
--mysqladmin <path> Path to a custom mysqladmin executable
|
||||
--mysqlcmd <path> Path to a custom mysql executable
|
||||
--defaults-file <path> Path to a custom .my.cnf
|
||||
--defaults-extra-file <path> Path to a extra custom config file
|
||||
--defaults-extra-file <path> Path to an extra custom config file
|
||||
--server-log <path> Path to explicit log file (error_log)
|
||||
|
||||
=head1 PERFORMANCE AND REPORTING OPTIONS
|
||||
|
|
Loading…
Reference in a new issue