From c2bc53bbd90acaa5700e09bd46d63e8481fbb6bb Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 3 Oct 2023 15:32:53 +0200 Subject: [PATCH] #10194 graph adjusted and fixed bug --- pandora_console/include/lib/TacticalView/Element.php | 6 +++++- .../include/lib/TacticalView/elements/Alerts.php | 2 +- .../include/lib/TacticalView/elements/LogStorage.php | 9 +++++++-- .../include/lib/TacticalView/elements/Overview.php | 8 +++----- 4 files changed, 16 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/lib/TacticalView/Element.php b/pandora_console/include/lib/TacticalView/Element.php index b7c756fb39..424e473250 100644 --- a/pandora_console/include/lib/TacticalView/Element.php +++ b/pandora_console/include/lib/TacticalView/Element.php @@ -156,7 +156,11 @@ class Element $rawData = modules_get_raw_data($module['id_agente_modulo'], $dateInit, $dateEnd); } - return $rawData; + if ($rawData === false || is_array($rawData) === false) { + return [['datos' => 0]]; + } else { + return $rawData; + } } else { return [['datos' => 0]]; } diff --git a/pandora_console/include/lib/TacticalView/elements/Alerts.php b/pandora_console/include/lib/TacticalView/elements/Alerts.php index fc4c3a5297..669442d214 100644 --- a/pandora_console/include/lib/TacticalView/elements/Alerts.php +++ b/pandora_console/include/lib/TacticalView/elements/Alerts.php @@ -135,7 +135,7 @@ class Alerts extends Element 'field' => 'title', 'direction' => 'asc', ], - 'default_pagination' => 8, + 'default_pagination' => 10, 'search_button_class' => 'sub filter float-right', 'return' => true, ] diff --git a/pandora_console/include/lib/TacticalView/elements/LogStorage.php b/pandora_console/include/lib/TacticalView/elements/LogStorage.php index da8214b69d..6f535271da 100644 --- a/pandora_console/include/lib/TacticalView/elements/LogStorage.php +++ b/pandora_console/include/lib/TacticalView/elements/LogStorage.php @@ -178,8 +178,13 @@ class LogStorage extends Element { $data = $this->valueMonitoring('Longest data archived'); $date = $data[0]['datos']; - $interval = (time() - strtotime($date)); - $days = round($interval / 86400); + if ($date > 0) { + $interval = (time() - strtotime($date)); + $days = round($interval / 86400); + } else { + $days = '-'; + } + return html_print_div( [ 'content' => $days, diff --git a/pandora_console/include/lib/TacticalView/elements/Overview.php b/pandora_console/include/lib/TacticalView/elements/Overview.php index 5a266db8a6..79b5eceb26 100644 --- a/pandora_console/include/lib/TacticalView/elements/Overview.php +++ b/pandora_console/include/lib/TacticalView/elements/Overview.php @@ -173,14 +173,12 @@ class Overview extends Element // TODO connect to automonitorization. $options = [ 'labels' => [ - 'Open Source', - 'Enterprise', - 'MaaS', + 'Agents used', + 'Free agents', ], 'colors' => [ '#1C4E6B', '#5C63A2', - '#EC7176', ], 'legend' => [ 'position' => 'bottom', @@ -188,7 +186,7 @@ class Overview extends Element ], 'cutout' => 80, ]; - $pie = ring_graph([2, 4, 6], $options); + $pie = ring_graph([60, 40], $options); $output = html_print_div( [ 'content' => $pie,