From a4ea5e7c77f77d760c657ac373f4b3c146ddd3d3 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Thu, 6 Jun 2019 14:16:09 +0200 Subject: [PATCH] Added image for unknown and no data status - 4088 --- .../operation/agentes/status_monitor.php | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index 447baa3556..6b948faf8a 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -1389,6 +1389,34 @@ if (!empty($result)) { true ); } + } else if ($row['estado'] == 3) { + if (is_numeric($row['datos'])) { + $data[6] = ui_print_status_image( + STATUS_MODULE_UNKNOWN, + __('UNKNOWN').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])), + true + ); + } else { + $data[6] = ui_print_status_image( + STATUS_MODULE_UNKNOWN, + __('UNKNOWN').': '.$row['datos'], + true + ); + } + } else if ($row['estado'] == 4) { + if (is_numeric($row['datos'])) { + $data[6] = ui_print_status_image( + STATUS_MODULE_NO_DATA, + __('NO DATA').': '.remove_right_zeros(number_format($row['datos'], $config['graph_precision'])), + true + ); + } else { + $data[6] = ui_print_status_image( + STATUS_MODULE_NO_DATA, + __('NO DATA').': '.$row['datos'], + true + ); + } } else { $last_status = modules_get_agentmodule_last_status( $row['id_agente_modulo']