'justification' => __('Rate of reading fixed position average: %s, this value should be less than 1 per hour'),
'id' => 'Uptime below one day',
'name' => __('Uptime below one day'),
'test' => 'value < 86400',
'issue' => __('Uptime is less than 1 day, performance tuning may not be accurate.'),
'To have more accurate averages it is recommended to let the server run for'
. ' longer than a day before running this analyzer'
'justification' => __('The uptime is only %s'),
'justification_formula' => 'ADVISOR_timespanFormat(Uptime)',
'id' => 'Questions below 1,000',
'name' => __('Questions below 1,000'),
'formula' => 'Questions',
'test' => 'value < 1000',
'Fewer than 1,000 questions have been run against this server.'
. ' The recommendations may not be accurate.'
'Let the server run for a longer time until it has executed a greater amount of queries.'
'justification' => __('Current amount of Questions: %s'),
'justification_formula' => 'Questions',
'id' => 'Percentage of slow queries',
'name' => __('Percentage of slow queries'),
'precondition' => 'Questions > 0',
'formula' => 'Slow_queries / Questions * 100',
'issue' => __('There is a lot of slow queries compared to the overall amount of Queries.'),
'You might want to increase {long_query_time} or optimize the queries listed in the slow query log'