diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 368173a0cc..8c10c447bb 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -1391,6 +1391,29 @@ function agents_get_interval ($id_agent) { return (int) db_get_value ('intervalo', 'tagente', 'id_agente', $id_agent); } +/** + * Get all data of agent. + * + * @param Agent object. + * + * @return The interval value and status of last contact + */ +function agents_get_interval_status ($agent) { + + $return = ''; + $last_time = strtotime ($agent["ultimo_contacto"]); + $now = time (); + $diferencia = $now - $last_time; + $time = ui_print_timestamp ($last_time, true, array('style' => 'font-size:6.5pt')); + $min_interval = modules_get_agentmodule_mininterval($agent['id_agente']); + + $return = $time; + if ($diferencia > ($min_interval["min_interval"] * 2)) + $return = ''.$time.''; + + return $return; +} + /** * Get the operating system of an agent. * diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index ac302c6a61..3696f287b0 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -2432,4 +2432,8 @@ function modules_get_modules_name ($sql_from , $sql_conditions = '', $meta = fal } } +function modules_get_agentmodule_mininterval($id_agent) { + $sql = sprintf('SELECT min(current_interval) min_interval from tagente_estado where id_agente = %d', $id_agent); + return db_get_row_sql($sql); +} ?> diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index dea66a0a0f..ce710a1db9 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -571,16 +571,7 @@ foreach ($agents as $agent) { $data[7] = $alert_img; - - $last_time = strtotime ($agent["ultimo_contacto"]); - $now = time (); - $diferencia = $now - $last_time; - $time = ui_print_timestamp ($last_time, true, array('style' => 'font-size:6.5pt')); - $style = ''; - if ($diferencia > ($agent["intervalo"] * 2)) - $data[8] = ''.$time.''; - else - $data[8] = $time; + $data[8] = agents_get_interval_status ($agent); // This old code was returning "never" on agents without modules, BAD !! // And does not print outdated agents in red. WRONG !!!! @@ -624,7 +615,6 @@ else {