mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-24 14:25:18 +02:00
#11495 Add tip and fix MTRS bug
This commit is contained in:
parent
51e07930ed
commit
63945df5fd
@ -4872,6 +4872,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 {
|
||||
|
@ -2793,8 +2793,8 @@ function reporting_html_service_level($table, $item, $pdf=0)
|
||||
$table_info->head[1] = __('% Av.');
|
||||
$table_info->head[2] = __('MTBF');
|
||||
$table_info->head[3] = __('MTRS');
|
||||
$table_info->head[4] = __('Crit. Events');
|
||||
$table_info->head[5] = __('Warn. Events');
|
||||
$table_info->head[4] = __('Crit. Events').ui_print_help_tip(__('Counted only critical events generated automatic by the module'), true);
|
||||
$table_info->head[5] = __('Warn. Events').ui_print_help_tip(__('Counted only warning events generated automatic by the module'), true);
|
||||
$table_info->head[6] = __('Last change');
|
||||
$table_info->data = [];
|
||||
$table_info->cellstyle = [];
|
||||
|
Loading…
x
Reference in New Issue
Block a user