#11494 Add tip and fix MTRS bug
This commit is contained in:
parent
d096f3f9ea
commit
64b612faea
|
@ -4871,6 +4871,10 @@ function service_level_module_data($datetime_from, $datetime_to, $id_agentmodule
|
|||
$mtrs_array[] = 0;
|
||||
} else {
|
||||
foreach ($normal_event as $key => $value) {
|
||||
if (isset($failed_event[$key]) === false) {
|
||||
$failed_event[$key] = end($failed_event);
|
||||
}
|
||||
|
||||
if (($failed_event[$key] - $normal_event[$key]) < 0) {
|
||||
$mtrs_array[] = ($normal_event[$key] - $failed_event[$key]);
|
||||
} else {
|
||||
|
|
|
@ -533,8 +533,8 @@ class ServiceLevelWidget extends Widget
|
|||
$table->head[1] = __('% Av.');
|
||||
$table->head[2] = __('MTBF');
|
||||
$table->head[3] = __('MTRS');
|
||||
$table->head[4] = __('Crit. Events');
|
||||
$table->head[5] = __('Warn. Events');
|
||||
$table->head[4] = __('Crit. Events').ui_print_help_tip(__('Counted only critical events generated automatic by the module'), true);
|
||||
$table->head[5] = __('Warn. Events').ui_print_help_tip(__('Counted only warning events generated automatic by the module'), true);
|
||||
$table->head[6] = __('Last change');
|
||||
$table->data = [];
|
||||
$table->cellstyle = [];
|
||||
|
|
Loading…
Reference in New Issue