' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Read requests') . ' | ' . "\n"
+ . ' '
+ . $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_read_requests'], 0
+ ) . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Write requests') . ' | ' . "\n"
+ . ' '
+ . $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_write_requests'], 0
+ ) . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Read misses') . ' | ' . "\n"
+ . ' '
+ . $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_reads'], 0
+ ) . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Write waits') . ' | ' . "\n"
+ . ' '
+ . $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_wait_free'], 0
+ ) . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Read misses in %') . ' | ' . "\n"
+ . ' '
+ . ($status['Innodb_buffer_pool_read_requests'] == 0
+ ? '---'
+ : htmlspecialchars(
+ $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_reads'] * 100
+ / $status['Innodb_buffer_pool_read_requests'],
+ 3,
+ 2
+ )
+ ) . ' %') . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . ' | ' . __('Write waits in %') . ' | ' . "\n"
+ . ' '
+ . ($status['Innodb_buffer_pool_write_requests'] == 0
+ ? '---'
+ : htmlspecialchars(
+ $common_functions->formatNumber(
+ $status['Innodb_buffer_pool_wait_free'] * 100
+ / $status['Innodb_buffer_pool_write_requests'],
+ 3,
+ 2
+ )
+ ) . ' %') . "\n"
+ . ' | ' . "\n"
+ . '
' . "\n"
+ . ' ' . "\n"
+ . '