diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index f6887cb4f4..5988473d93 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.763-220630 +Version: 7.0NG.763-220719 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 4716a6a3ef..9d3bc7ff6c 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.763-220630" +pandora_version="7.0NG.763-220719" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 10b23cc997..6fc09ff6a8 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.763'; -use constant AGENT_BUILD => '220630'; +use constant AGENT_BUILD => '220719'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index f9707d7f21..5bfddc5249 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.763 -%define release 220630 +%define release 220719 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 6677f694b4..61f6702752 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.763 -%define release 220630 +%define release 220719 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 5a0703bcb8..c183977f88 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.763" -PI_BUILD="220630" +PI_BUILD="220719" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 90824540ef..d1abe959a5 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{220630} +{220719} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 29085af385..dedf0a746e 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.763 Build 220630") +#define PANDORA_VERSION ("7.0NG.763 Build 220719") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index f65c8cd04d..af1beace05 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.763(Build 220630))" + VALUE "ProductVersion", "(7.0NG.763(Build 220719))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index d42b6da5cc..c02567ca10 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.763-220630 +Version: 7.0NG.763-220719 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index f41bcea4b1..409eaeb1f1 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.763-220630" +pandora_version="7.0NG.763-220719" package_pear=0 package_pandora=1 diff --git a/pandora_console/extras/mr/56.sql b/pandora_console/extras/mr/56.sql new file mode 100644 index 0000000000..13cc050dfc --- /dev/null +++ b/pandora_console/extras/mr/56.sql @@ -0,0 +1,41 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `tuser_task` ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `function_name` VARCHAR(80) NOT NULL DEFAULT '', + `parameters` TEXT , + `name` VARCHAR(60) NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + + +CREATE TABLE IF NOT EXISTS `tuser_task_scheduled` ( + `id` INT UNSIGNED NOT NULL AUTO_INCREMENT, + `id_usuario` VARCHAR(255) NOT NULL DEFAULT '0', + `id_user_task` INT UNSIGNED NOT NULL DEFAULT 0, + `args` TEXT, + `scheduled` ENUM('no','hourly','daily','weekly','monthly','yearly','custom') DEFAULT 'no', + `last_run` INT UNSIGNED DEFAULT 0, + `custom_data` INT NULL DEFAULT 0, + `flag_delete` TINYINT UNSIGNED NOT NULL DEFAULT 0, + `id_grupo` INT UNSIGNED NOT NULL DEFAULT 0, + `enabled` TINYINT UNSIGNED NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; + +ALTER TABLE `tautoconfig` ADD COLUMN `type_execution` VARCHAR(100) NOT NULL DEFAULT 'start'; +ALTER TABLE `tautoconfig` ADD COLUMN `type_periodicity` VARCHAR(100) NOT NULL DEFAULT 'weekly'; +ALTER TABLE `tautoconfig` ADD COLUMN `monday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `tuesday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `wednesday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `thursday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `friday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `saturday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `sunday` TINYINT DEFAULT 0; +ALTER TABLE `tautoconfig` ADD COLUMN `periodically_day_from` INT UNSIGNED DEFAULT NULL; +ALTER TABLE `tautoconfig` ADD COLUMN `periodically_time_from` time NULL DEFAULT NULL; +ALTER TABLE `tautoconfig` ADD COLUMN `executed` TINYINT UNSIGNED NOT NULL DEFAULT 0; + +ALTER TABLE `tusuario` DROP COLUMN `metaconsole_assigned_server`; + +COMMIT; diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 7cb8f1d81b..89b7c56a3e 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -42,17 +42,10 @@ if (tags_has_user_acl_tags()) { ui_print_tags_warning(); } -$user_strict = (bool) db_get_value( - 'strict_acl', - 'tusuario', - 'id_user', - $config['id_user'] -); $all_data = tactical_status_modules_agents( $config['id_user'], - $user_strict, - 'AR', - $user_strict + false, + 'AR' ); $data = []; diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index fb5dce8830..5f06eb7b89 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -45,7 +45,7 @@ if ($default != 0) { 'token' => 'event_fields', 'value' => $event_fields, ]; - // update 'event_fields' in tconfig table to keep the value at update. + // Update 'event_fields' in tconfig table to keep the value at update. $result = db_process_sql_update( 'tconfig', $values, @@ -147,7 +147,7 @@ $table->data[1][1] .= '



'.html_print_image( $table->data[0][1] = ''; $table->data[0][2] = ''.__('Fields selected').''; -$table->data[1][2] = html_print_select( +$table->data[1][2] = '
'.html_print_select( $result_selected, 'fields_selected[]', true, @@ -162,6 +162,25 @@ $table->data[1][2] = html_print_select( 'width: 300px' ); +$table->data[1][2] .= '
'; +$table->data[1][2] .= ''.html_print_image( + 'images/darrowup.png', + true, + [ + 'onclick' => 'sortUpDown(\'up\');', + 'title' => __('Move up selected fields'), + ] +).''; +$table->data[1][2] .= ''.html_print_image( + 'images/darrowdown.png', + true, + [ + 'onclick' => 'sortUpDown(\'down\');', + 'title' => __('Move down selected fields'), + ] +).''; +$table->data[1][2] .= '
'; + echo '
'; html_print_table($table); @@ -174,7 +193,7 @@ echo ''; diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 9b03dd3168..1337098126 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -526,7 +526,8 @@ $menu_godmode['links']['sub'] = $sub; // Warp Manager. if ((bool) check_acl($config['id_user'], 0, 'PM') === true && (bool) $config['enable_update_manager'] === true) { - $menu_godmode['messages']['text'] = __('Warp Update');; + $menu_godmode['messages']['text'] = __('Warp Update'); + ; $menu_godmode['messages']['id'] = 'god-um_messages'; $menu_godmode['messages']['sec2'] = ''; diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 55b967aa08..9726d8fcdd 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -180,6 +180,9 @@ $uncompressed_module = true; $macros_definition = ''; $render_definition = ''; +$text_agent = ''; +$text_agent_module = ''; + $only_data = false; // Users. @@ -678,6 +681,21 @@ switch ($action) { $period = $item['period']; $order_uptodown = $item['order_uptodown']; $show_resume = $item['show_resume']; + + $text_agent = ''; + if (isset($style['text_agent']) === true + && empty($style['text_agent']) === false + ) { + $text_agent = base64_decode($style['text_agent']); + } + + + $text_agent_module = ''; + if (isset($style['text_agent_module']) === true + && empty($style['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($style['text_agent_module']); + } break; case 'availability': @@ -745,6 +763,21 @@ switch ($action) { $show_resume = $item['show_resume']; $show_graph = $item['show_graph']; $order_uptodown = $item['order_uptodown']; + + $text_agent = ''; + if (isset($style['text_agent']) === true + && empty($style['text_agent']) === false + ) { + $text_agent = base64_decode($style['text_agent']); + } + + + $text_agent_module = ''; + if (isset($style['text_agent_module']) === true + && empty($style['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($style['text_agent_module']); + } break; case 'exception': @@ -755,6 +788,21 @@ switch ($action) { $show_resume = $item['show_resume']; $show_graph = $item['show_graph']; $order_uptodown = $item['order_uptodown']; + + $text_agent = ''; + if (isset($style['text_agent']) === true + && empty($style['text_agent']) === false + ) { + $text_agent = base64_decode($style['text_agent']); + } + + + $text_agent_module = ''; + if (isset($style['text_agent_module']) === true + && empty($style['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($style['text_agent_module']); + } break; case 'agent_module': @@ -1093,6 +1141,52 @@ $class = 'databox filters'; + + + + + + + + + + + + + + + + + + @@ -5990,6 +6084,8 @@ function chooseType() { $("#row_render_definition").hide(); $("#row_time_compare_overlapped").hide(); $("#row_quantity").hide(); + $("#row_agent_regexp").hide(); + $("#row_module_regexp").hide(); $("#row_exception_condition_value").hide(); $("#row_exception_condition").hide(); $("#row_dyn_height").hide(); @@ -6480,6 +6576,8 @@ function chooseType() { $("#row_order_uptodown").show(); $("#row_show_resume").show(); $("#row_show_in_same_row").show(); + $("#row_agent_regexp").show(); + $("#row_module_regexp").show(); var checked = $("input[name='last_value']").prop("checked"); @@ -6548,6 +6646,8 @@ function chooseType() { $("#row_description").show(); $("#row_period").show(); $("#row_max_min_avg").show(); + $("#row_agent_regexp").show(); + $("#row_module_regexp").show(); $("#row_quantity").show(); $("#general_list").show(); $("#row_order_uptodown").show(); @@ -6565,6 +6665,8 @@ function chooseType() { $("#row_order_uptodown").show(); $("#row_show_resume").show(); $("#row_show_graph").show(); + $("#row_agent_regexp").show(); + $("#row_module_regexp").show(); var checked = $("input[name='last_value']").prop("checked"); diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index e7337418a0..2b03c1a771 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -2321,6 +2321,20 @@ switch ($action) { // $values['external_source'] = json_encode($es); break; + case 'top_n': + case 'general': + case 'exception': + $text_agent = get_parameter('text_agent', ''); + $text_agent_module = get_parameter('text_agent_module', ''); + if (empty($text_agent) === false) { + $style['text_agent'] = base64_encode($text_agent); + } + + if (empty($text_agent_module) === false) { + $style['text_agent_module'] = base64_encode($text_agent_module); + } + break; + default: // Default. break; @@ -3073,6 +3087,20 @@ switch ($action) { $es['agent_not_assigned_to_ip'] = get_parameter('agent_not_assigned_to_ip'); break; + case 'top_n': + case 'general': + case 'exception': + $text_agent = get_parameter('text_agent', ''); + $text_agent_module = get_parameter('text_agent_module', ''); + if (empty($text_agent) === false) { + $style['text_agent'] = base64_encode($text_agent); + } + + if (empty($text_agent_module) === false) { + $style['text_agent_module'] = base64_encode($text_agent_module); + } + break; + default: // Default. break; diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index d425c13b14..897d5ddea0 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -1298,6 +1298,15 @@ $table_other->data[$row][1] = html_print_checkbox_switch( ); $row++; +$table_other->data[$row][0] = __('Show empty groups in group view'); +$table_other->data[$row][1] = html_print_checkbox_switch( + 'show_empty_groups', + 1, + $config['show_empty_groups'], + true +); +$row++; + $table_other->data[$row][0] = __('Date format string'); $table_other->data[$row][1] = ''.__('Example').' '.date($config['date_format']); $table_other->data[$row][1] .= html_print_input_text('date_format', $config['date_format'], '', 30, 100, true); diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 04a7e1126a..3ed36f8737 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -301,7 +301,6 @@ if ($new_user && $config['admin_can_add_user']) { if (enterprise_installed() && is_metaconsole() === true) { $user_info['metaconsole_agents_manager'] = 0; - $user_info['metaconsole_assigned_server'] = ''; $user_info['metaconsole_access_node'] = 0; } @@ -375,7 +374,6 @@ if ($create_user) { if (defined('METACONSOLE')) { $values['metaconsole_access'] = get_parameter('metaconsole_access', 'basic'); $values['metaconsole_agents_manager'] = ($user_is_admin == 1 ? 1 : get_parameter('metaconsole_agents_manager', '0')); - $values['metaconsole_assigned_server'] = get_parameter('metaconsole_assigned_server', ''); $values['metaconsole_access_node'] = ($user_is_admin == 1 ? 1 : get_parameter('metaconsole_access_node', '0')); } } @@ -588,7 +586,6 @@ if ($update_user) { if (enterprise_installed() && defined('METACONSOLE')) { $values['metaconsole_access'] = get_parameter('metaconsole_access'); $values['metaconsole_agents_manager'] = get_parameter('metaconsole_agents_manager', '0'); - $values['metaconsole_assigned_server'] = get_parameter('metaconsole_assigned_server', ''); $values['metaconsole_access_node'] = get_parameter('metaconsole_access_node', '0'); } @@ -1357,15 +1354,6 @@ if ($meta) { true ).''; - $metaconsole_assigned_server = '

'.__('Assigned node').ui_print_help_tip(__('Server where the agents created of this user will be placed'), true).'

'; - $servers = metaconsole_get_servers(); - $servers_for_select = []; - foreach ($servers as $server) { - $servers_for_select[$server['id']] = $server['server_name']; - } - - $metaconsole_assigned_server .= html_print_select($servers_for_select, 'metaconsole_assigned_server', $user_info['metaconsole_assigned_server'], '', '', -1, true, false, false).'
'; - $metaconsole_access_node = '

'.__('Enable node access').ui_print_help_tip(__('With this option enabled, the user will can access to nodes console'), true).'

'; $metaconsole_access_node .= html_print_checkbox( 'metaconsole_access_node', @@ -1416,7 +1404,7 @@ if (!is_metaconsole()) { '.$area_data_timezone_polys.$area_data_timezone_rects.'
'; } else { - echo $search_custom_fields_view.$metaconsole_agents_manager.$metaconsole_assigned_server.$metaconsole_access_node; + echo $search_custom_fields_view.$metaconsole_agents_manager.$metaconsole_access_node; } echo ' @@ -1535,16 +1523,16 @@ $(document).ready (function () { }); $('#checkbox-is_admin').change(function() { - if($('#checkbox-is_admin').is(':checked') == true) { - $('#metaconsole_agents_manager_div').show(); - $('#metaconsole_access_node_div').show(); - if($('#checkbox-metaconsole_agents_manager').prop('checked')) { - $('#metaconsole_assigned_server_div').show(); - } - } else { + if ($('#checkbox-is_admin').is(':checked') == true) { $('#metaconsole_agents_manager_div').hide(); $('#metaconsole_access_node_div').hide(); $('#metaconsole_assigned_server_div').hide(); + } else { + $('#metaconsole_agents_manager_div').show(); + $('#metaconsole_access_node_div').show(); + if ($('#checkbox-metaconsole_agents_manager').prop('checked')) { + $('#metaconsole_assigned_server_div').show(); + } } }); diff --git a/pandora_console/images/alarm-off.png b/pandora_console/images/alarm-off.png new file mode 100644 index 0000000000..99f3895e0b Binary files /dev/null and b/pandora_console/images/alarm-off.png differ diff --git a/pandora_console/images/gear.png b/pandora_console/images/gear.png new file mode 100644 index 0000000000..e383f94e44 Binary files /dev/null and b/pandora_console/images/gear.png differ diff --git a/pandora_console/images/no-alerts-discovered.png b/pandora_console/images/no-alerts-discovered.png new file mode 100644 index 0000000000..ec9b9a88b1 Binary files /dev/null and b/pandora_console/images/no-alerts-discovered.png differ diff --git a/pandora_console/images/play-white.png b/pandora_console/images/play-white.png new file mode 100644 index 0000000000..2b9b1e93b2 Binary files /dev/null and b/pandora_console/images/play-white.png differ diff --git a/pandora_console/images/silence-alerts.png b/pandora_console/images/silence-alerts.png new file mode 100644 index 0000000000..22b1c95930 Binary files /dev/null and b/pandora_console/images/silence-alerts.png differ diff --git a/pandora_console/images/sound_wave.png b/pandora_console/images/sound_wave.png new file mode 100644 index 0000000000..d04c823de3 Binary files /dev/null and b/pandora_console/images/sound_wave.png differ diff --git a/pandora_console/images/stop.png b/pandora_console/images/stop.png new file mode 100644 index 0000000000..20903a0132 Binary files /dev/null and b/pandora_console/images/stop.png differ diff --git a/pandora_console/images/widgets/BlockHistogram.png b/pandora_console/images/widgets/BlockHistogram.png new file mode 100644 index 0000000000..91a93a42f9 Binary files /dev/null and b/pandora_console/images/widgets/BlockHistogram.png differ diff --git a/pandora_console/images/widgets/ColorModuleTabs.png b/pandora_console/images/widgets/ColorModuleTabs.png new file mode 100644 index 0000000000..413134613b Binary files /dev/null and b/pandora_console/images/widgets/ColorModuleTabs.png differ diff --git a/pandora_console/images/widgets/agent_module.png b/pandora_console/images/widgets/agent_module.png index 0040a642d8..ef3ad18058 100644 Binary files a/pandora_console/images/widgets/agent_module.png and b/pandora_console/images/widgets/agent_module.png differ diff --git a/pandora_console/images/widgets/alerts_fired.png b/pandora_console/images/widgets/alerts_fired.png index 2738ea7434..9ebb6665f6 100644 Binary files a/pandora_console/images/widgets/alerts_fired.png and b/pandora_console/images/widgets/alerts_fired.png differ diff --git a/pandora_console/images/widgets/clock.png b/pandora_console/images/widgets/clock.png index 4546fbf033..b2d3129162 100644 Binary files a/pandora_console/images/widgets/clock.png and b/pandora_console/images/widgets/clock.png differ diff --git a/pandora_console/images/widgets/custom_graph.png b/pandora_console/images/widgets/custom_graph.png index 384aa1aa61..43f71d9022 100644 Binary files a/pandora_console/images/widgets/custom_graph.png and b/pandora_console/images/widgets/custom_graph.png differ diff --git a/pandora_console/images/widgets/events_list.png b/pandora_console/images/widgets/events_list.png index 27e6b2bbf1..7ae0a64b56 100644 Binary files a/pandora_console/images/widgets/events_list.png and b/pandora_console/images/widgets/events_list.png differ diff --git a/pandora_console/images/widgets/example.png b/pandora_console/images/widgets/example.png index 65a016c195..ae7ddb844b 100644 Binary files a/pandora_console/images/widgets/example.png and b/pandora_console/images/widgets/example.png differ diff --git a/pandora_console/images/widgets/graph_module_histogram.png b/pandora_console/images/widgets/graph_module_histogram.png index caec402178..ffa8feafe0 100644 Binary files a/pandora_console/images/widgets/graph_module_histogram.png and b/pandora_console/images/widgets/graph_module_histogram.png differ diff --git a/pandora_console/images/widgets/graph_module_histogram_copy.png b/pandora_console/images/widgets/graph_module_histogram_copy.png new file mode 100644 index 0000000000..52577a7441 Binary files /dev/null and b/pandora_console/images/widgets/graph_module_histogram_copy.png differ diff --git a/pandora_console/images/widgets/groups_status.png b/pandora_console/images/widgets/groups_status.png index 1c1080c866..622fa75758 100644 Binary files a/pandora_console/images/widgets/groups_status.png and b/pandora_console/images/widgets/groups_status.png differ diff --git a/pandora_console/images/widgets/maps_made_by_user.png b/pandora_console/images/widgets/maps_made_by_user.png index 558ce12f41..fe2fc288b1 100644 Binary files a/pandora_console/images/widgets/maps_made_by_user.png and b/pandora_console/images/widgets/maps_made_by_user.png differ diff --git a/pandora_console/images/widgets/maps_status.png b/pandora_console/images/widgets/maps_status.png index 6818a4c224..4bed1f0f43 100644 Binary files a/pandora_console/images/widgets/maps_status.png and b/pandora_console/images/widgets/maps_status.png differ diff --git a/pandora_console/images/widgets/module_icon.png b/pandora_console/images/widgets/module_icon.png index 47b9bd6251..b5c317f136 100644 Binary files a/pandora_console/images/widgets/module_icon.png and b/pandora_console/images/widgets/module_icon.png differ diff --git a/pandora_console/images/widgets/module_status.png b/pandora_console/images/widgets/module_status.png index 5f9bd07eea..c5a60ddb72 100644 Binary files a/pandora_console/images/widgets/module_status.png and b/pandora_console/images/widgets/module_status.png differ diff --git a/pandora_console/images/widgets/module_table_value.png b/pandora_console/images/widgets/module_table_value.png index afacc0aa32..9e06bc95a5 100644 Binary files a/pandora_console/images/widgets/module_table_value.png and b/pandora_console/images/widgets/module_table_value.png differ diff --git a/pandora_console/images/widgets/module_value.png b/pandora_console/images/widgets/module_value.png index b64aaa234c..848ffe3da7 100644 Binary files a/pandora_console/images/widgets/module_value.png and b/pandora_console/images/widgets/module_value.png differ diff --git a/pandora_console/images/widgets/monitor_health.png b/pandora_console/images/widgets/monitor_health.png index 91a832416e..32204751b1 100644 Binary files a/pandora_console/images/widgets/monitor_health.png and b/pandora_console/images/widgets/monitor_health.png differ diff --git a/pandora_console/images/widgets/network_map.png b/pandora_console/images/widgets/network_map.png index 484e61e749..f4c19f95cd 100644 Binary files a/pandora_console/images/widgets/network_map.png and b/pandora_console/images/widgets/network_map.png differ diff --git a/pandora_console/images/widgets/os_quick_report.png b/pandora_console/images/widgets/os_quick_report.png index eda6e7adbe..a972ee1125 100644 Binary files a/pandora_console/images/widgets/os_quick_report.png and b/pandora_console/images/widgets/os_quick_report.png differ diff --git a/pandora_console/images/widgets/post.png b/pandora_console/images/widgets/post.png index c4b5409538..634c6c075d 100644 Binary files a/pandora_console/images/widgets/post.png and b/pandora_console/images/widgets/post.png differ diff --git a/pandora_console/images/widgets/reports.png b/pandora_console/images/widgets/reports.png index ad841762d1..87fb1ba8bc 100644 Binary files a/pandora_console/images/widgets/reports.png and b/pandora_console/images/widgets/reports.png differ diff --git a/pandora_console/images/widgets/service_map.png b/pandora_console/images/widgets/service_map.png index 93db3f4632..ea2bf86bc1 100644 Binary files a/pandora_console/images/widgets/service_map.png and b/pandora_console/images/widgets/service_map.png differ diff --git a/pandora_console/images/widgets/service_view.png b/pandora_console/images/widgets/service_view.png index 8043a1e453..52577a7441 100644 Binary files a/pandora_console/images/widgets/service_view.png and b/pandora_console/images/widgets/service_view.png differ diff --git a/pandora_console/images/widgets/single_graph.png b/pandora_console/images/widgets/single_graph.png index a72eef0185..04604de881 100644 Binary files a/pandora_console/images/widgets/single_graph.png and b/pandora_console/images/widgets/single_graph.png differ diff --git a/pandora_console/images/widgets/sla_percent.png b/pandora_console/images/widgets/sla_percent.png index 02c0e17987..515d1bbdfe 100644 Binary files a/pandora_console/images/widgets/sla_percent.png and b/pandora_console/images/widgets/sla_percent.png differ diff --git a/pandora_console/images/widgets/system_group_status.png b/pandora_console/images/widgets/system_group_status.png index befbb53541..29132493af 100644 Binary files a/pandora_console/images/widgets/system_group_status.png and b/pandora_console/images/widgets/system_group_status.png differ diff --git a/pandora_console/images/widgets/tactical.png b/pandora_console/images/widgets/tactical.png index 6d35605b15..8ab44e22f0 100644 Binary files a/pandora_console/images/widgets/tactical.png and b/pandora_console/images/widgets/tactical.png differ diff --git a/pandora_console/images/widgets/top_n.png b/pandora_console/images/widgets/top_n.png index 6b10dfb3d4..762b152ef8 100644 Binary files a/pandora_console/images/widgets/top_n.png and b/pandora_console/images/widgets/top_n.png differ diff --git a/pandora_console/images/widgets/top_n_events_by_group.png b/pandora_console/images/widgets/top_n_events_by_group.png index 286500a13a..355ec634e4 100644 Binary files a/pandora_console/images/widgets/top_n_events_by_group.png and b/pandora_console/images/widgets/top_n_events_by_group.png differ diff --git a/pandora_console/images/widgets/top_n_events_by_module.png b/pandora_console/images/widgets/top_n_events_by_module.png index 55191bde07..dcceb42868 100644 Binary files a/pandora_console/images/widgets/top_n_events_by_module.png and b/pandora_console/images/widgets/top_n_events_by_module.png differ diff --git a/pandora_console/images/widgets/tree_view.png b/pandora_console/images/widgets/tree_view.png index 8043a1e453..7ed2c2753a 100644 Binary files a/pandora_console/images/widgets/tree_view.png and b/pandora_console/images/widgets/tree_view.png differ diff --git a/pandora_console/images/widgets/url.png b/pandora_console/images/widgets/url.png index af954ed879..066dd49589 100644 Binary files a/pandora_console/images/widgets/url.png and b/pandora_console/images/widgets/url.png differ diff --git a/pandora_console/images/widgets/ux_transaction.png b/pandora_console/images/widgets/ux_transaction.png index de778eec79..f8a2e1dd61 100644 Binary files a/pandora_console/images/widgets/ux_transaction.png and b/pandora_console/images/widgets/ux_transaction.png differ diff --git a/pandora_console/images/widgets/wux_transaction.png b/pandora_console/images/widgets/wux_transaction.png index b47003dbef..37ef107de1 100644 Binary files a/pandora_console/images/widgets/wux_transaction.png and b/pandora_console/images/widgets/wux_transaction.png differ diff --git a/pandora_console/images/widgets/wux_transaction_stats.png b/pandora_console/images/widgets/wux_transaction_stats.png index d991620712..9396bf0c0b 100644 Binary files a/pandora_console/images/widgets/wux_transaction_stats.png and b/pandora_console/images/widgets/wux_transaction_stats.png differ diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index 77d9647a4b..5a92d33c16 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -55,6 +55,7 @@ if (! check_acl($config['id_user'], 0, 'ER') return; } +$drawConsoleSound = (bool) get_parameter('drawConsoleSound', false); $process_buffers = (bool) get_parameter('process_buffers', false); $get_extended_event = (bool) get_parameter('get_extended_event'); $change_status = (bool) get_parameter('change_status'); @@ -2225,6 +2226,228 @@ if ($process_buffers === true) { return; } +if ($drawConsoleSound === true) { + echo ui_require_css_file('wizard', 'include/styles/', true); + echo ui_require_css_file('discovery', 'include/styles/', true); + echo ui_require_css_file('sound_events', 'include/styles/', true); + $output = '
'; + // Header tabs. + $output .= ''; + + // Content tabs. + $output .= '
'; + $output .= '

'; + $output .= __('Console configuration'); + $output .= '

'; + $inputs = []; + + // Load filter. + $fields = \events_get_event_filter_select(); + $inputs[] = [ + 'label' => \__('Set condition'), + 'arguments' => [ + 'type' => 'select', + 'fields' => $fields, + 'name' => 'filter_id', + 'selected' => 0, + 'return' => true, + 'nothing' => \__('All new events'), + 'nothing_value' => 0, + 'class' => 'fullwidth', + ], + ]; + + $times_interval = [ + 10 => '10 '.__('seconds'), + 15 => '15 '.__('seconds'), + 30 => '30 '.__('seconds'), + 60 => '60 '.__('seconds'), + ]; + + $times_sound = [ + 2 => '2 '.__('seconds'), + 5 => '5 '.__('seconds'), + 10 => '10 '.__('seconds'), + 15 => '15 '.__('seconds'), + 30 => '30 '.__('seconds'), + 60 => '60 '.__('seconds'), + ]; + + $inputs[] = [ + 'class' => 'interval-sounds', + 'direct' => 1, + 'block_content' => [ + [ + 'label' => __('Interval'), + 'arguments' => [ + 'type' => 'select', + 'fields' => $times_interval, + 'name' => 'interval', + 'selected' => 10, + 'return' => true, + ], + ], + [ + 'label' => __('Time Sound'), + 'arguments' => [ + 'type' => 'select', + 'fields' => $times_sound, + 'name' => 'time_sound', + 'selected' => 10, + 'return' => true, + ], + ], + ], + ]; + + $sounds = [ + 'aircraftalarm.wav' => 'Air craft alarm', + 'air_shock_alarm.wav' => 'Air shock alarm', + 'alien_alarm.wav' => 'Alien alarm', + 'alien_beacon.wav' => 'Alien beacon', + 'bell_school_ringing.wav' => 'Bell school ringing', + 'Door_Alarm.wav' => 'Door alarm', + 'EAS_beep.wav' => 'EAS beep', + 'Firewarner.wav' => 'Fire warner', + 'HardPCMAlarm.wav' => 'Hard PCM Alarm', + 'negativebeep.wav' => 'Negative beep', + 'Star_Trek_emergency_simulation.wav' => 'StarTrek emergency simulation', + ]; + + $inputs[] = [ + 'class' => 'test-sounds', + 'direct' => 1, + 'block_content' => [ + [ + 'label' => \__('Sound melody'), + 'arguments' => [ + 'type' => 'select', + 'fields' => $sounds, + 'name' => 'sound_id', + 'selected' => 'Star_Trek_emergency_simulation.wav', + 'return' => true, + 'class' => 'fullwidth', + ], + ], + [ + 'arguments' => [ + 'type' => 'button', + 'name' => 'melody_sound', + 'label' => __('Test sound'), + 'attributes' => 'class="sub upd"', + 'return' => true, + ], + ], + ], + ]; + + // Print form. + $output .= HTML::printForm( + [ + 'form' => [ + 'action' => '', + 'method' => 'POST', + ], + 'inputs' => $inputs, + ], + true, + false + ); + $output .= '
'; + + $output .= '
'; + $output .= '

'; + $output .= __('Discovered alerts'); + $output .= '

'; + $output .= '
'; + $output .= html_print_image( + 'images/no-alerts-discovered.png', + true, + [ + 'title' => __('No alerts discovered'), + 'class' => 'invert_filter', + ] + ); + $output .= ''; + $output .= __('Congrats! there’s nothing to show'); + $output .= ''; + $output .= '
'; + $output .= '
    '; + $output .= '
    '; + $output .= '
    '; + + $output .= '
    '; + $output .= '
    '; + $output .= '
    '; + $output .= '
    '; + $output .= html_print_input( + [ + 'label' => __('Start'), + 'type' => 'button', + 'name' => 'start-search', + 'attributes' => 'class="sub play"', + 'return' => true, + ], + 'div', + true + ); + $output .= '
    '; + $output .= '
    '; + $output .= html_print_input( + [ + 'type' => 'button', + 'name' => 'no-alerts', + 'label' => __('No alerts'), + 'attributes' => 'class="sub alerts"', + 'return' => true, + ], + 'div', + true + ); + $output .= '
    '; + + $output .= html_print_input( + [ + 'type' => 'hidden', + 'name' => 'mode_alert', + 'value' => 0, + 'return' => true, + ], + 'div', + true + ); + $output .= '
    '; + $output .= '
    '; + + echo $output; + return; +} + if ($get_events_fired) { global $config; $filter_id = (int) get_parameter('filter_id', 0); diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index a0cfb1347d..801cf26a53 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -2483,14 +2483,12 @@ class ConsoleSupervisor SERVER_TYPE_ENTERPRISE_SATELLITE ) ); - $missed = 0; - if (is_array($server_version_list) === true) { foreach ($server_version_list as $server) { if (strpos( $server['version'], - (string) floor($config['current_package']) + (string) floor((int) $config['current_package']) ) === false ) { $missed++; diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php index b9420eba44..4b3a9061cc 100644 --- a/pandora_console/include/class/TreeService.class.php +++ b/pandora_console/include/class/TreeService.class.php @@ -252,6 +252,7 @@ class TreeService extends Tree protected function getProcessedServices() { $is_favourite = $this->getServiceFavouriteFilter(); + $service_search = $this->getServiceNameSearchFilter(); if (users_can_manage_group_all('AR')) { $groups_acl = ''; @@ -259,6 +260,16 @@ class TreeService extends Tree $groups_acl = 'AND ts.id_group IN ('.implode(',', $this->userGroupsArray).')'; } + $exclude_children = 'ts.id NOT IN ( + SELECT DISTINCT id_service_child + FROM tservice_element + WHERE id_server_meta = 0 + )'; + + if ($service_search !== '') { + $exclude_children = '1=1'; + } + $sql = sprintf( 'SELECT ts.id, @@ -277,15 +288,14 @@ class TreeService extends Tree FROM tservice ts LEFT JOIN tservice_element tse ON tse.id_service = ts.id - WHERE ts.id NOT IN ( - SELECT DISTINCT id_service_child - FROM tservice_element - WHERE id_server_meta = 0 - ) + WHERE %s + %s %s %s GROUP BY ts.id', + $exclude_children, $is_favourite, + $service_search, $groups_acl ); @@ -722,6 +732,23 @@ class TreeService extends Tree } + /** + * Retrieve SQL filter for current filter + * + * @return string SQL filter. + */ + protected function getServiceNameSearchFilter() + { + if (isset($this->filter['searchService']) === true + && empty($this->filter['searchService']) === false + ) { + return " AND (ts.name LIKE '%".$this->filter['searchService']."%' OR ts.description LIKE '%".$this->filter['searchService']."%')"; + } + + return ''; + } + + /** * Overwrites partial functionality of general Tree.class. * diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 068fc4797b..9ceda3b486 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC220630'; +$build_version = 'PC220719'; $pandora_version = 'v7.0NG.763'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 8b18fe6417..6c27efe2e0 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2263,7 +2263,14 @@ function check_login($output=true) || (isset($_SESSION['merge-request-user-trick']) === true && $_SESSION['merge-request-user-trick'] === $_SESSION['id_usuario']) ) { - $config['id_user'] = $_SESSION['id_usuario']; + if (isset($config['auth']) === true && $config['auth'] === 'ad' && is_user($_SESSION['id_usuario'])) { + // User name in active directory is case insensitive. + // Get the user name from database. + $user_info = get_user_info($_SESSION['id_usuario']); + $config['id_user'] = $user_info['id_user']; + } else { + $config['id_user'] = $_SESSION['id_usuario']; + } return true; } diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 1b370ba16e..ac608e6acf 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -4298,3 +4298,140 @@ function agents_get_offspring(int $id_agent) return $return; } + + +function agents_get_starmap(int $id_agent, float $width=0, float $height=0) +{ + ui_require_css_file('heatmap'); + + $all_modules = agents_get_modules($id_agent); + if (empty($all_modules)) { + return null; + } + + $total_modules = count($all_modules); + + // Best square. + $high = (float) max($width, $height); + $low = 0.0; + + while (abs($high - $low) > 0.000001) { + $mid = (($high + $low) / 2.0); + $midval = (floor($width / $mid) * floor($height / $mid)); + if ($midval >= $total_modules) { + $low = $mid; + } else { + $high = $mid; + } + } + + $square_length = min(($width / floor($width / $low)), ($height / floor($height / $low))); + + // Print starmap. + $html = sprintf( + '', + $id_agent, + $width, + $height + ); + + $html .= ''; + $row = 0; + $column = 0; + $x = 0; + $y = 0; + $cont = 1; + foreach ($all_modules as $key => $value) { + // Colour by status. + $status = modules_get_agentmodule_status($key); + switch ($status) { + case 0: + case 4: + case 300: + $status = 'normal'; + break; + + case 1: + case 100: + $status = 'critical'; + break; + + case 2: + case 200: + $status = 'warning'; + break; + + case 3: + $status = 'unknown'; + break; + + case 5: + $status = 'notinit'; + break; + } + + $html .= sprintf( + '', + 'rect_'.$cont, + $x, + $y, + $row, + $column, + $square_length, + $square_length, + $status, + random_int(1, 10) + ); + + $y += $square_length; + $row++; + if ((int) ($y + $square_length) > (int) $height) { + $y = 0; + $x += $square_length; + $row = 0; + $column++; + } + + if ((int) ($x + $square_length) > (int) $width) { + $x = 0; + $y += $square_length; + $column = 0; + $row++; + } + + $cont++; + } + ?> + + '; + $html .= ''; + + return $html; +} diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index a7db04abb0..eebc498131 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -1245,6 +1245,10 @@ function config_update_config() $error_update[] = __('Show the group name instead the group icon.'); } + if (config_update_value('show_empty_groups', get_parameter('show_empty_groups'), true) === false) { + $error_update[] = __('Show empty groups in group view.'); + } + if (config_update_value('custom_graph_width', (int) get_parameter('custom_graph_width', 1), true) === false) { $error_update[] = __('Default line thickness for the Custom Graph.'); } @@ -3115,6 +3119,10 @@ function config_process_config() config_update_value('show_group_name', 0); } + if (!isset($config['show_empty_groups'])) { + config_update_value('show_empty_groups', 1); + } + if (!isset($config['custom_graph_width'])) { config_update_value('custom_graph_width', 1); } diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 4040edb546..d0a42460b1 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -401,15 +401,8 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal case '1': // Group by events. - $event = events_get_event($id_evento, ['estado', 'event_type', 'id_agente', 'id_agentmodule']); - $filter['group_rep'] = 0; - $filter['status'] = $event['estado']; - $filter['event_type'] = $event['event_type']; - $filter['id_agent'] = $event['id_agente']; - $filter['id_agentmodule'] = $event['id_agentmodule']; - $sql = events_get_all( - ['te.id_evento'], + ['te.*'], $filter, // Offset. null, @@ -425,7 +418,18 @@ function events_delete($id_evento, $filter=null, $history=false, $force_node=fal true ); - $target_ids = db_get_all_rows_sql($sql); + $target_ids = db_get_all_rows_sql( + sprintf( + 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf + ON tu.estado = tf.estado + AND tu.evento = tf.evento + AND tu.id_agente = tf.id_agente + AND tu.id_agentmodule = tf.id_agentmodule + AND tf.max_id_evento = %d', + $sql, + $id_evento + ) + ); // Try to avoid deadlock while updating full set. if ($target_ids !== false && count($target_ids) > 0) { @@ -490,15 +494,8 @@ function events_update_status($id_evento, $status, $filter=null) case '1': // Group by events. - $event = events_get_event($id_evento, ['estado', 'event_type', 'id_agente', 'id_agentmodule']); - $filter['group_rep'] = 0; - $filter['status'] = $event['estado']; - $filter['event_type'] = $event['event_type']; - $filter['id_agent'] = $event['id_agente']; - $filter['id_agentmodule'] = $event['id_agentmodule']; - $sql = events_get_all( - ['te.id_evento'], + ['te.*'], $filter, // Offset. null, @@ -514,7 +511,18 @@ function events_update_status($id_evento, $status, $filter=null) true ); - $target_ids = db_get_all_rows_sql($sql); + $target_ids = db_get_all_rows_sql( + sprintf( + 'SELECT tu.id_evento FROM tevento tu INNER JOIN ( %s ) tf + ON tu.estado = tf.estado + AND tu.evento = tf.evento + AND tu.id_agente = tf.id_agente + AND tu.id_agentmodule = tf.id_agentmodule + AND tf.max_id_evento = %d', + $sql, + $id_evento + ) + ); // Try to avoid deadlock while updating full set. if ($target_ids !== false && count($target_ids) > 0) { @@ -1416,16 +1424,19 @@ function events_get_all( $group_selects = ''; if ($group_by != '') { if ($count === false) { - $group_selects = ',COUNT(id_evento) AS event_rep, - GROUP_CONCAT(DISTINCT user_comment SEPARATOR "
    ") AS comments, - MAX(utimestamp) as timestamp_last, - MIN(utimestamp) as timestamp_first, - MAX(id_evento) as max_id_evento'; - $idx = array_search('te.user_comment', $fields); if ($idx !== false) { unset($fields[$idx]); } + + $group_selects = sprintf( + ',COUNT(id_evento) AS event_rep, + %s + MAX(utimestamp) as timestamp_last, + MIN(utimestamp) as timestamp_first, + MAX(id_evento) as max_id_evento', + ($idx !== false) ? 'GROUP_CONCAT(DISTINCT user_comment SEPARATOR "
    ") AS comments,' : '' + ); } } else { $idx = array_search('te.user_comment', $fields); diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 81c5f9f179..11012b96eb 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -2558,7 +2558,8 @@ function combined_graph_summatory_average( function graphic_agentaccess( int $id_agent, int $period=0, - ?bool $return=false + ?bool $return=false, + ?bool $agent_view=false ) { global $config; @@ -2599,6 +2600,10 @@ function graphic_agentaccess( $options = []; $options['grid']['hoverable'] = true; + if ($agent_view === true) { + $options['agent_view'] = true; + } + if ($return === true) { return vbar_graph($data_array, $options, 1); } else { @@ -3015,7 +3020,7 @@ function graph_sla_slicebar( true, $ttl, false, - false, + true, $date ); } @@ -3959,7 +3964,7 @@ function graph_graphic_agentevents( EVENT_CRIT_CRITICAL => COL_CRITICAL, ]; - // Draw slicebar graph + // Draw slicebar graph. $out = flot_slicesbar_graph( $data, $period, @@ -3978,6 +3983,7 @@ function graph_graphic_agentevents( $not_interactive, 1, $widgets, + true, $server_id ); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index c3dea8d961..b97e0398b6 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -983,6 +983,14 @@ function html_print_select( if ($select2_multiple_enable === true && $select2_multiple_enable_all === true ) { + $output .= 'if($("#'.$id.' > option").length !== $("#'.$id.' > option:selected").length) { + checked = false; + } else { + checked = true; + } + + $("#checkbox-'.$id.'-check-all").prop("checked", checked);'; + $output .= '$("#'.$id.'").on("change", function(e) { var checked = false; if(e.target.length !== $("#'.$id.' > option:selected").length) { @@ -994,8 +1002,6 @@ function html_print_select( $("#checkbox-'.$id.'-check-all").prop("checked", checked); });'; - $output .= '$("#'.$id.'").trigger("change");'; - $output .= 'var count_shift_'.$id.' = 0;'; $output .= 'var shift_array_'.$id.' = [];'; $output .= 'var options_selecteds_'.$id.' = [];'; @@ -1007,13 +1013,17 @@ function html_print_select( if(count_shift_'.$id.' == 2 ){ if(shift_array_'.$id.'[0] <= shift_array_'.$id.'[1]) { for (var i = shift_array_'.$id.'[0]; i <= shift_array_'.$id.'[1]; i++) { - var option_value = $("#'.$id.' option").eq(i).val(); - options_selecteds_'.$id.'.push(option_value); + if ($("#'.$id.' option").eq(i).text().includes($(".select2-search__field").val()) == true) { + var option_value = $("#'.$id.' option").eq(i).val(); + options_selecteds_'.$id.'.push(option_value); + } } } else { for (var i = shift_array_'.$id.'[0]; i >= shift_array_'.$id.'[1]; i--) { - var option_value = $("#'.$id.' option").eq(i).val(); - options_selecteds_'.$id.'.push(option_value); + if ($("#'.$id.' option").eq(i).text().includes($(".select2-search__field").val()) == true) { + var option_value = $("#'.$id.' option").eq(i).val(); + options_selecteds_'.$id.'.push(option_value); + } } } @@ -5449,6 +5459,108 @@ function html_print_input($data, $wrapper='div', $input_only=false) ); break; + case 'select_multiple_modules_filtered_select2': + $output .= '
  • '; + $output .= html_print_label(__('Agents'), '', true); + $output .= html_print_select( + $data['agent_values'], + $data['agent_name'], + $data['agent_ids'], + 'agent_multiple_change(this, \''.base64_encode(json_encode($data)).'\')', + '', + 0, + true, + true, + true, + '', + false, + 'min-width: 150px; max-height: 100px', + false, + false, + false, + '', + false, + false, + false, + false, + true, + true, + true + ); + $output .= '
  • '; + + // $output .= html_print_input_hidden( + // 'id_agents2-multiple-text', + // json_encode($agents_select) + // ); + $selection = [ + 0 => __('Show common modules'), + 1 => __('Show all modules'), + ]; + + $output .= '
  • '; + $output .= html_print_label(__('Type'), '', true); + $output .= html_print_select( + $selection, + $data['selectionModulesNameId'], + $data['selectionModules'], + 'selection_multiple_change(\''.base64_encode(json_encode($data)).'\')', + '', + 0, + true, + false, + true, + '', + false, + 'min-width: 180px' + ); + $output .= '
  • '; + + $all_modules = []; + if (empty($data['agent_ids']) === false) { + $all_modules = get_modules_agents( + 0, + $data['agent_ids'], + $data['selectionModules'], + true + ); + } + + $output .= '
  • '; + $output .= html_print_label(__('Modules'), '', true); + $output .= html_print_select( + $all_modules, + $data['modules_name'], + $data['modules_ids'], + '', + '', + 0, + true, + true, + true, + '', + false, + 'min-width: 150px; max-width: 500px; max-height: 100px', + false, + false, + false, + '', + false, + false, + false, + false, + true, + true, + true + ); + $output .= '
  • '; + + // $output .= html_print_input_hidden( + // 'module-multiple-text', + // json_encode($agents_select) + // ); + break; + default: // Ignore. break; @@ -6026,3 +6138,36 @@ function html_print_select_agent_secondary($agent, $id_agente, $options=[]) return $output; } + + +/** + * Prints a simple 'Go Back' button. + * + * @param string $url Destination Url. + * @param array $options Options. + * `button_class`: Class for button. 'w100p' by default. + * `title`: Title of the button. 'Go Back' by default. + * `action_class`: Class of icon of button. 'cancel' by default. + * @param boolean $return If true, return a formed HTML element. + * + * @return mixed + */ +function html_print_go_back_button(string $url, array $options=[], bool $return=false) +{ + $output = html_print_div( + [ + 'class' => ($options['button_class'] ?? 'w100p'), + 'content' => html_print_button( + ($options['title'] ?? __('Go back')), + 'go_back', + false, + 'window.location.href = \''.$url.'\'', + 'class="sub '.($options['action_class'] ?? ' cancel').' right"', + true + ), + ], + $return + ); + + return $output; +} diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index e286a7720b..6c265e8e0f 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -2820,6 +2820,40 @@ function modules_get_color_status($status, $force_module=false) } +/** + * Text color status. + * + * @param string $status Type status. + * + * @return string Color. + */ +function modules_get_textcolor_status($status) +{ + $result = '#ffffff'; + switch ($status) { + case AGENT_MODULE_STATUS_WARNING: + case AGENT_MODULE_STATUS_CRITICAL_ALERT: + case AGENT_MODULE_STATUS_WARNING_ALERT: + case AGENT_MODULE_STATUS_NORMAL_ALERT: + $result = '#000000'; + break; + + case AGENT_MODULE_STATUS_CRITICAL_BAD: + case AGENT_MODULE_STATUS_NOT_NORMAL: + case AGENT_MODULE_STATUS_NO_DATA: + case AGENT_MODULE_STATUS_NOT_INIT: + case AGENT_MODULE_STATUS_NORMAL: + case AGENT_MODULE_STATUS_ALL: + case AGENT_MODULE_STATUS_UNKNOWN: + default: + $result = '#ffffff'; + break; + } + + return $result; +} + + /** * Gets a module status an modify the status and title reference variables * @@ -3630,7 +3664,7 @@ function get_modules_agents($id_module_group, $id_agents, $selection, $select_mo } } - if (!$selection) { + if (!$selection && $useName === true) { // Common modules. $final_modules = []; $nodes_consulted = count($modules); @@ -3732,6 +3766,10 @@ function get_same_modules($agents, array $modules=[]) return []; } + if (is_array($modules) === false || empty($modules) === true) { + return []; + } + $name_modules = modules_get_agentmodule_name_array_data( array_values($modules) ); @@ -4224,3 +4262,50 @@ function modules_get_min_max_data($id_agent_module, $time_init=0) return $data; } + + +/** + * Get modules match regex. + * + * @param string $regex_alias Regex alias. + * @param string $regex_name_module Regex module name. + * @param string $server_name Name server. + * + * @return array + */ +function modules_get_regex( + $regex_alias, + $regex_name_module='', + $server_name='' +) { + $agent_regexp = sprintf('AND tagente.alias REGEXP "%s"', $regex_alias); + $module_regexp = ''; + if (empty($regex_name_module) === false) { + $module_regexp = sprintf( + 'AND tagente_modulo.nombre REGEXP "%s"', + $regex_name_module + ); + } + + $sql = sprintf( + 'SELECT tagente_modulo.id_agente_modulo as id_agent_module, + "%s" as server_name + FROM tagente_modulo + INNER JOIN tagente + ON tagente.id_agente = tagente_modulo.id_agente + WHERE 1=1 + %s + %s', + $server_name, + $agent_regexp, + $module_regexp + ); + + $result = db_get_all_rows_sql($sql); + + if ($result === false) { + $result = []; + } + + return $result; +} diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 10852ee8b3..82451e1ac2 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -67,6 +67,7 @@ define('REPORT_STATUS_DOWNTIME', 4); define('REPORT_STATUS_IGNORED', 5); // Clases. +use PandoraFMS\Enterprise\Metaconsole\Node; use PandoraFMS\Event; use PandoraFMS\Module; @@ -1544,10 +1545,6 @@ function reporting_event_top_n( $return['top_n'] = $content['top_n_value']; if (empty($content['subitems'])) { - if (is_metaconsole()) { - metaconsole_restore_db(); - } - // Get all the related data. $sql = sprintf( 'SELECT id_agent_module, server_name @@ -1556,7 +1553,67 @@ function reporting_event_top_n( $content['id_rc'] ); - $tops = db_process_sql($sql); + $tops = db_get_all_rows_sql($sql); + if ($tops === false) { + $tops = []; + } + + // REGEXP. + $text_agent = ''; + if (isset($content['style']['text_agent']) === true + && empty($content['style']['text_agent']) === false + ) { + $text_agent = base64_decode($content['style']['text_agent']); + } + + $text_agent_module = ''; + if (isset($content['style']['text_agent_module']) === true + && empty($content['style']['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($content['style']['text_agent_module']); + } + + $modules_regex = []; + if (empty($text_agent) === false) { + if (is_metaconsole() === true) { + $nodes = metaconsole_get_connections(); + foreach ($nodes as $node) { + try { + $nd = new Node($node['id']); + $nd->connect(); + $modules_regex_node = modules_get_regex( + $text_agent, + $text_agent_module, + $node['server_name'] + ); + } catch (\Exception $e) { + $nd->disconnect(); + $modules_regex_node = []; + } finally { + $nd->disconnect(); + } + + $modules_regex = array_merge($modules_regex, $modules_regex_node); + } + } else { + $modules_regex = modules_get_regex( + $text_agent, + $text_agent_module + ); + } + } + + if (empty($modules_regex) === false) { + $tops = array_merge($tops, $modules_regex); + $tops = array_reduce( + $tops, + function ($carry, $item) { + $carry[$item['id_agent_module'].'|'.$item['server_name']] = $item; + return $carry; + }, + [] + ); + } } else { $tops = $content['subitems']; } @@ -1579,6 +1636,9 @@ function reporting_event_top_n( $height = $force_height_chart; } + // Force width 600px. + $width = 600; + if (empty($tops)) { $return['failed'] = __('There are no Agent/Modules defined'); } else { @@ -1590,7 +1650,6 @@ function reporting_event_top_n( if (($config['metaconsole'] == 1) && $server_name != '' && is_metaconsole()) { $connection = metaconsole_get_connection($server_name); if (metaconsole_load_external_db($connection) != NOERR) { - // ui_print_error_message ("Error connecting to ".$server_name); continue; } } @@ -1644,18 +1703,51 @@ function reporting_event_top_n( switch ($order_uptodown) { // Descending. case 1: - array_multisort($data_top, SORT_DESC, $agent_name, SORT_ASC, $module_name, SORT_ASC, $id_agent_module, SORT_ASC, $units, SORT_ASC); + array_multisort( + $data_top, + SORT_DESC, + $agent_name, + SORT_ASC, + $module_name, + SORT_ASC, + $id_agent_module, + SORT_ASC, + $units, + SORT_ASC + ); break; // Ascending. case 2: - array_multisort($data_top, SORT_ASC, $agent_name, SORT_ASC, $module_name, SORT_ASC, $id_agent_module, SORT_ASC, $units, SORT_ASC); + array_multisort( + $data_top, + SORT_ASC, + $agent_name, + SORT_ASC, + $module_name, + SORT_ASC, + $id_agent_module, + SORT_ASC, + $units, + SORT_ASC + ); break; // By agent name or without selection. case 0: case 3: - array_multisort($agent_name, SORT_ASC, $data_top, SORT_ASC, $module_name, SORT_ASC, $id_agent_module, SORT_ASC, $units, SORT_ASC); + array_multisort( + $agent_name, + SORT_ASC, + $data_top, + SORT_ASC, + $module_name, + SORT_ASC, + $id_agent_module, + SORT_ASC, + $units, + SORT_ASC + ); break; default: @@ -1683,66 +1775,18 @@ function reporting_event_top_n( $i = 0; $data_pie_graph = []; $data_hbar = []; - foreach ($data_top as $dt) { - $item_name = ''; - $item_name = ui_print_truncate_text($agent_name[$i], $truncate_size, false, true, false, '...').' - '.ui_print_truncate_text($module_name[$i], $truncate_size, false, true, false, '...'); - - $item_name_key_pie = $item_name; - $exist_key = true; - while ($exist_key) { - if (isset($data_pie_graph[$item_name_key_pie])) { - $item_name_key_pie .= ' '; - } else { - $exist_key = false; - } - } - - $item_name_key_hbar = $item_name; - $exist_key = true; - while ($exist_key) { - if (isset($data_hbar[$item_name_key_hbar])) { - $item_name_key_hbar = ' '.$item_name_key_hbar; - } else { - $exist_key = false; - } - } - - $data_hbar[$item_name]['g'] = $dt; - $data_pie_graph[$item_name] = $dt; - - if ($show_graph == 0 || $show_graph == 1) { - $data = []; - $data['agent'] = $agent_name[$i]; - $data['module'] = $module_name[$i]; - - $data['value'] = $dt; - - $divisor = get_data_multiplier($units[$i]); - - $data['formated_value'] = format_for_graph($dt, 2, '.', ',', $divisor, $units[$i]); - $data_return[] = $data; - } - - $i++; - if ($i >= $top_n_value) { - break; - } - } - } else if ($order_uptodown == 0 || $order_uptodown == 3) { - $i = 0; - $data_pie_graph = []; - $data_hbar = []; - foreach ($agent_name as $an) { - $item_name = ''; + foreach ($data_top as $key_dt => $dt) { $item_name = ui_print_truncate_text( - $agent_name[$i], + $agent_name[$key_dt], $truncate_size, false, true, false, '...' - ).' - '.ui_print_truncate_text( - $module_name[$i], + ); + $item_name .= ' - '; + $item_name .= ui_print_truncate_text( + $module_name[$key_dt], $truncate_size, false, true, @@ -1770,17 +1814,94 @@ function reporting_event_top_n( } } - $data_pie_graph[$item_name] = $data_top[$i]; - $data_hbar[$item_name]['g'] = $data_top[$i]; + $data_hbar[$item_name]['g'] = $dt; + $data_pie_graph[$item_name] = $dt; - $divisor = get_data_multiplier($units[$i]); + if ($show_graph == 0 || $show_graph == 1) { + $data = []; + $data['agent'] = $agent_name[$key_dt]; + $data['module'] = $module_name[$key_dt]; + + $data['value'] = $dt; + + $divisor = get_data_multiplier($units[$key_dt]); + + $data['formated_value'] = format_for_graph( + $dt, + 2, + '.', + ',', + $divisor, + $units[$key_dt] + ); + $data_return[] = $data; + } + + $i++; + if ($i >= $top_n_value) { + break; + } + } + } else if ($order_uptodown == 0 || $order_uptodown == 3) { + $i = 0; + $data_pie_graph = []; + $data_hbar = []; + foreach ($agent_name as $key_an => $an) { + $item_name = ''; + $item_name = ui_print_truncate_text( + $agent_name[$key_an], + $truncate_size, + false, + true, + false, + '...' + ).' - '.ui_print_truncate_text( + $module_name[$key_an], + $truncate_size, + false, + true, + false, + '...' + ); + + $item_name_key_pie = $item_name; + $exist_key = true; + while ($exist_key) { + if (isset($data_pie_graph[$item_name_key_pie])) { + $item_name_key_pie .= ' '; + } else { + $exist_key = false; + } + } + + $item_name_key_hbar = $item_name; + $exist_key = true; + while ($exist_key) { + if (isset($data_hbar[$item_name_key_hbar])) { + $item_name_key_hbar = ' '.$item_name_key_hbar; + } else { + $exist_key = false; + } + } + + $data_pie_graph[$item_name] = $data_top[$key_an]; + $data_hbar[$item_name]['g'] = $data_top[$key_an]; + + $divisor = get_data_multiplier($units[$key_an]); if ($show_graph == 0 || $show_graph == 1) { $data = []; $data['agent'] = $an; - $data['module'] = $module_name[$i]; - $data['value'] = $data_top[$i]; - $data['formated_value'] = format_for_graph($data_top[$i], 2, '.', ',', $divisor, $units[$i]); + $data['module'] = $module_name[$key_an]; + $data['value'] = $data_top[$key_an]; + $data['formated_value'] = format_for_graph( + $data_top[$key_an], + 2, + '.', + ',', + $divisor, + $units[$key_an] + ); $data_return[] = $data; } @@ -1826,7 +1947,7 @@ function reporting_event_top_n( $ttl, $config['homeurl'], 'white', - 'black' + '#DFDFDF' ); } @@ -3150,11 +3271,72 @@ function reporting_exception( WHERE id_report_content = %d', $content['id_rc'] ); - if (is_metaconsole()) { - metaconsole_restore_db(); + + $exceptions = db_get_all_rows_sql($sql); + if ($exceptions === false) { + $exceptions = []; } - $exceptions = db_process_sql($sql); + // REGEXP. + $text_agent = ''; + if (isset($content['style']['text_agent']) === true + && empty($content['style']['text_agent']) === false + ) { + $text_agent = base64_decode($content['style']['text_agent']); + } + + $text_agent_module = ''; + if (isset($content['style']['text_agent_module']) === true + && empty($content['style']['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($content['style']['text_agent_module']); + } + + $modules_regex = []; + if (empty($text_agent) === false) { + if (is_metaconsole() === true) { + $nodes = metaconsole_get_connections(); + foreach ($nodes as $node) { + try { + $nd = new Node($node['id']); + $nd->connect(); + $modules_regex_node = modules_get_regex( + $text_agent, + $text_agent_module, + $node['server_name'] + ); + } catch (\Exception $e) { + $nd->disconnect(); + $modules_regex_node = []; + } finally { + $nd->disconnect(); + } + + $modules_regex = array_merge($modules_regex, $modules_regex_node); + } + } else { + $modules_regex = modules_get_regex( + $text_agent, + $text_agent_module + ); + } + } + + if (empty($modules_regex) === false) { + $exceptions = array_merge($exceptions, $modules_regex); + $exceptions = array_reduce( + $exceptions, + function ($carry, $item) { + if (isset($item['operation']) === false) { + $item['operation'] = 'avg'; + } + + $carry[$item['id_agent_module'].'|'.$item['server_name']] = $item; + return $carry; + }, + [] + ); + } } else { $exceptions = $content['subitems']; } @@ -4924,7 +5106,7 @@ function reporting_custom_render($report, $content, $type='dinamic', $pdf=0) $data_macro['server_id'] ); if (metaconsole_connect($server) != NOERR) { - continue; + continue 2; } } @@ -9423,14 +9605,75 @@ function reporting_general($report, $content) $return['show_in_same_row'] = $content['style']['show_in_same_row']; if (empty($content['subitems'])) { - if (is_metaconsole()) { - metaconsole_restore_db(); - } - $generals = db_get_all_rows_filter( 'treport_content_item', ['id_report_content' => $content['id_rc']] ); + + if ($generals === false) { + $generals = []; + } + + // REGEXP. + $text_agent = ''; + if (isset($content['style']['text_agent']) === true + && empty($content['style']['text_agent']) === false + ) { + $text_agent = base64_decode($content['style']['text_agent']); + } + + $text_agent_module = ''; + if (isset($content['style']['text_agent_module']) === true + && empty($content['style']['text_agent_module']) === false + ) { + $text_agent_module = base64_decode($content['style']['text_agent_module']); + } + + $modules_regex = []; + if (empty($text_agent) === false) { + if (is_metaconsole() === true) { + $nodes = metaconsole_get_connections(); + foreach ($nodes as $node) { + try { + $nd = new Node($node['id']); + $nd->connect(); + $modules_regex_node = modules_get_regex( + $text_agent, + $text_agent_module, + $node['server_name'] + ); + } catch (\Exception $e) { + $nd->disconnect(); + $modules_regex_node = []; + } finally { + $nd->disconnect(); + } + + $modules_regex = array_merge($modules_regex, $modules_regex_node); + } + } else { + $modules_regex = modules_get_regex( + $text_agent, + $text_agent_module + ); + } + } + + if (empty($modules_regex) === false) { + $generals = array_merge($generals, $modules_regex); + $generals = array_reduce( + $generals, + function ($carry, $item) { + if (isset($item['operation']) === false) { + $item['operation'] = 'avg'; + } + + $carry[$item['id_agent_module'].'|'.$item['server_name']] = $item; + return $carry; + }, + [] + ); + } } else { $generals = $content['subitems']; } @@ -9440,16 +9683,14 @@ function reporting_general($report, $content) } $i = 0; - $index = 0; $is_string = []; - foreach ($generals as $row) { - // Metaconsole connection + foreach ($generals as $key_row => $row) { + // Metaconsole connection. $server_name = $row['server_name']; if (($config['metaconsole'] == 1) && $server_name != '' && is_metaconsole()) { $connection = metaconsole_get_connection($server_name); if (metaconsole_load_external_db($connection) != NOERR) { - // ui_print_error_message ("Error connecting to ".$server_name); continue; } } @@ -9458,7 +9699,7 @@ function reporting_general($report, $content) || modules_is_not_init($row['id_agent_module']) ) { if (is_metaconsole()) { - // Restore db connection + // Restore db connection. metaconsole_restore_db(); } @@ -9469,7 +9710,7 @@ function reporting_general($report, $content) $ag_name = modules_get_agentmodule_agent_alias($row['id_agent_module']); $name_agent = modules_get_agentmodule_agent_name($row['id_agent_module']); $type_mod = modules_get_last_value($row['id_agent_module']); - $is_string[$index] = modules_is_string($row['id_agent_module']); + $is_string[$key_row] = modules_is_string($row['id_agent_module']); $unit = db_get_value( 'unit', 'tagente_modulo', @@ -9478,7 +9719,7 @@ function reporting_general($report, $content) ); $id_module_type = db_get_value('id_tipo_modulo', 'tagente_modulo', 'nombre', $mod_name); if ($content['period'] == 0) { - $data_res[$index] = modules_get_last_value($row['id_agent_module']); + $data_res[$key_row] = modules_get_last_value($row['id_agent_module']); } else { $data_sum = reporting_get_agentmodule_data_sum( $row['id_agent_module'], @@ -9502,34 +9743,34 @@ function reporting_general($report, $content) ); if ($content['style']['show_in_same_row'] && $content['group_by_agent'] == REPORT_GENERAL_NOT_GROUP_BY_AGENT) { - $data_res[$index] = [ + $data_res[$key_row] = [ $data_avg, $data_max, $data_min, $data_sum, ]; } else { - if (is_numeric($type_mod) && !$is_string[$index]) { + if (is_numeric($type_mod) && !$is_string[$key_row]) { switch ($row['operation']) { case 'sum': - $data_res[$index] = $data_sum; + $data_res[$key_row] = $data_sum; break; case 'max': - $data_res[$index] = $data_max; + $data_res[$key_row] = $data_max; break; case 'min': - $data_res[$index] = $data_min; + $data_res[$key_row] = $data_min; break; case 'avg': default: - $data_res[$index] = $data_avg; + $data_res[$key_row] = $data_avg; break; } } else { - $data_res[$index] = $type_mod; + $data_res[$key_row] = $type_mod; } } } @@ -9538,46 +9779,46 @@ function reporting_general($report, $content) switch ($content['group_by_agent']) { case REPORT_GENERAL_NOT_GROUP_BY_AGENT: - $id_agent_module[$index] = $row['id_agent_module']; - $agent_name[$index] = $ag_name; - $module_name[$index] = $mod_name; - $units[$index] = $unit; - $id_module_types[$index] = $id_module_type; - $operations[$index] = $row['operation']; + $id_agent_module[$key_row] = $row['id_agent_module']; + $agent_name[$key_row] = $ag_name; + $module_name[$key_row] = $mod_name; + $units[$key_row] = $unit; + $id_module_types[$key_row] = $id_module_type; + $operations[$key_row] = $row['operation']; break; case REPORT_GENERAL_GROUP_BY_AGENT: - $id_module_types[$index] = $id_module_type; - if ($id_module_types[$index] == 2 || $id_module_types[$index] == 6 || $id_module_types[$index] == 9 || $id_module_types[$index] == 18) { - $data_res[$index] = round($data_res[$index], 0, PHP_ROUND_HALF_DOWN); + $id_module_types[$key_row] = $id_module_type; + if ($id_module_types[$key_row] == 2 || $id_module_types[$key_row] == 6 || $id_module_types[$key_row] == 9 || $id_module_types[$key_row] == 18) { + $data_res[$key_row] = round($data_res[$key_row], 0, PHP_ROUND_HALF_DOWN); } - if ($id_module_types[$index] == 2 || $id_module_types[$index] == 6 || $id_module_types[$index] == 9 || $id_module_types[$index] == 18) { - if ($data_res[$index] == 1) { - $data_res[$index] = 'Up'; - } else if ($data_res[$index] == 0) { - $data_res[$index] = 'Down'; + if ($id_module_types[$key_row] == 2 || $id_module_types[$key_row] == 6 || $id_module_types[$key_row] == 9 || $id_module_types[$key_row] == 18) { + if ($data_res[$key_row] == 1) { + $data_res[$key_row] = 'Up'; + } else if ($data_res[$key_row] == 0) { + $data_res[$key_row] = 'Down'; } } - if ($data_res[$index] === false) { + if ($data_res[$key_row] === false) { $return['data'][$name_agent][$mod_name] = null; } else { - if (!is_numeric($data_res[$index])) { - $return['data'][$name_agent][$mod_name] = $data_res[$index]; + if (!is_numeric($data_res[$key_row])) { + $return['data'][$name_agent][$mod_name] = $data_res[$key_row]; } else { - $return['data'][$name_agent][$mod_name] = format_for_graph($data_res[$index], 2, '.', ',', $divisor, ' '.$unit); + $return['data'][$name_agent][$mod_name] = format_for_graph($data_res[$key_row], 2, '.', ',', $divisor, ' '.$unit); } } break; } if ($content['style']['show_in_same_row']) { - foreach ($data_res[$index] as $val) { + foreach ($data_res[$key_row] as $val) { // Calculate the avg, min and max if (is_numeric($val)) { $change_min = false; - if (is_null($return['min']['value'])) { + if ($return['min']['value'] === null) { $change_min = true; } else { if ($return['min']['value'] > $val) { @@ -9593,7 +9834,7 @@ function reporting_general($report, $content) } $change_max = false; - if (is_null($return['max']['value'])) { + if ($return['max']['value'] === null) { $change_max = true; } else { if ($return['max']['value'] < $val) { @@ -9617,51 +9858,50 @@ function reporting_general($report, $content) } } else { // Calculate the avg, min and max - if (is_numeric($data_res[$index]) && !$is_string[$index]) { + if (is_numeric($data_res[$key_row]) && !$is_string[$key_row]) { $change_min = false; - if (is_null($return['min']['value'])) { + if ($return['min']['value'] === null) { $change_min = true; } else { - if ($return['min']['value'] > $data_res[$index]) { + if ($return['min']['value'] > $data_res[$key_row]) { $change_min = true; } } if ($change_min) { - $return['min']['value'] = $data_res[$index]; - $return['min']['formated_value'] = format_for_graph($data_res[$index], 2, '.', ',', $divisor, ' '.$unit); + $return['min']['value'] = $data_res[$key_row]; + $return['min']['formated_value'] = format_for_graph($data_res[$key_row], 2, '.', ',', $divisor, ' '.$unit); $return['min']['agent'] = $ag_name; $return['min']['module'] = $mod_name; } $change_max = false; - if (is_null($return['max']['value'])) { + if ($return['max']['value'] === null) { $change_max = true; } else { - if ($return['max']['value'] < $data_res[$index]) { + if ($return['max']['value'] < $data_res[$key_row]) { $change_max = true; } } if ($change_max) { - $return['max']['value'] = $data_res[$index]; - $return['max']['formated_value'] = format_for_graph($data_res[$index], 2, '.', ',', $divisor, ' '.$unit); + $return['max']['value'] = $data_res[$key_row]; + $return['max']['formated_value'] = format_for_graph($data_res[$key_row], 2, '.', ',', $divisor, ' '.$unit); $return['max']['agent'] = $ag_name; $return['max']['module'] = $mod_name; } if ($i == 0) { - $return['avg_value'] = $data_res[$index]; + $return['avg_value'] = $data_res[$key_row]; } else { - $return['avg_value'] = ((($return['avg_value'] * $i) / ($i + 1)) + ($data_res[$index] / ($i + 1))); + $return['avg_value'] = ((($return['avg_value'] * $i) / ($i + 1)) + ($data_res[$key_row] / ($i + 1))); } } } - $index++; $i++; - // Restore dbconnection + // Restore dbconnection. if (($config['metaconsole'] == 1) && $server_name != '' && is_metaconsole()) { metaconsole_restore_db(); } @@ -9719,20 +9959,19 @@ function reporting_general($report, $content) break; } - $i = 0; - foreach ($data_res as $d) { + foreach ($data_res as $d_key => $d) { $data = []; - $data['agent'] = $agent_name[$i]; - $data['module'] = $module_name[$i]; - $data['id_agent_module'] = $id_agent_module[$i]; - $data['id_agent'] = agents_get_agent_id_by_module_id($id_agent_module[$i]); - $data['id_module_type'] = $id_module_types[$i]; + $data['agent'] = $agent_name[$d_key]; + $data['module'] = $module_name[$d_key]; + $data['id_agent_module'] = $id_agent_module[$d_key]; + $data['id_agent'] = agents_get_agent_id_by_module_id($id_agent_module[$d_key]); + $data['id_module_type'] = $id_module_types[$d_key]; $data['operator'] = ''; if ($content['period'] != 0) { if ($content['style']['show_in_same_row']) { $data['operator'] = 'all'; } else { - switch ($operations[$i]) { + switch ($operations[$d_key]) { case 'sum': $data['operator'] = __('Summatory'); break; @@ -9758,28 +9997,16 @@ function reporting_general($report, $content) if ($val === false) { $data['value'][] = null; } else { - switch ($config['dbtype']) { - case 'mysql': - case 'postgresql': - break; + $divisor = get_data_multiplier($units[$d_key]); - case 'oracle': - if (preg_match('/[0-9]+,[0-9]E+[+-][0-9]+/', $val)) { - $val = oracle_format_float_to_php($val); - } - break; - } - - $divisor = get_data_multiplier($units[$i]); - - if (!is_numeric($val) || $is_string[$i]) { + if (!is_numeric($val) || $is_string[$d_key]) { $data['value'][] = $val; // to see the chains on the table $data['formated_value'][] = $val; } else { $data['value'][] = $val; - $data['formated_value'][] = format_for_graph($val, 2, '.', ',', $divisor, ' '.$units[$i]); + $data['formated_value'][] = format_for_graph($val, 2, '.', ',', $divisor, ' '.$units[$d_key]); } } } @@ -9787,35 +10014,21 @@ function reporting_general($report, $content) if ($d === false) { $data['value'] = null; } else { - switch ($config['dbtype']) { - case 'mysql': - case 'postgresql': - break; + $divisor = get_data_multiplier($units[$d_key]); - case 'oracle': - if (preg_match('/[0-9]+,[0-9]E+[+-][0-9]+/', $d)) { - $d = oracle_format_float_to_php($d); - } - break; - } - - $divisor = get_data_multiplier($units[$i]); - - if (!is_numeric($d) || $is_string[$i]) { + if (!is_numeric($d) || $is_string[$d_key]) { $data['value'] = $d; // to see the chains on the table $data['formated_value'] = $d; } else { $data['value'] = $d; - $data['formated_value'] = format_for_graph($d, 2, '.', ',', $divisor, ' '.$units[$i]); + $data['formated_value'] = format_for_graph($d, 2, '.', ',', $divisor, ' '.$units[$d_key]); } } } $return['data'][] = $data; - - $i++; } break; } @@ -10908,7 +11121,7 @@ function reporting_get_group_stats($id_group=0, $access='AR', $recursion=true) * * @return array Group statistics */ -function reporting_get_group_stats_resume($id_group=0, $access='AR', $ignore_permissions=false) +function reporting_get_group_stats_resume($id_group=0, $access='AR', $ignore_permissions=false, $recursive=false) { global $config; @@ -10952,6 +11165,8 @@ function reporting_get_group_stats_resume($id_group=0, $access='AR', $ignore_per $id_group = array_keys( users_get_groups($config['id_user'], $access, false) ); + } else if ($recursive === true) { + $id_group = groups_get_children_ids($id_group); } // ----------------------------------------------------------------- @@ -11082,7 +11297,7 @@ function reporting_get_group_stats_resume($id_group=0, $access='AR', $ignore_per $group_stat = db_get_all_rows_sql($sql); $data = [ 'monitor_checks' => (int) $group_stat[0]['modules'], - 'monitor_alerts' => (int) groups_monitor_alerts($group_array), + 'monitor_alerts' => (int) groups_monitor_alerts($group_stat[0]['id_group']), 'monitor_alerts_fired' => (int) $group_stat[0]['alerts_fired'], 'monitor_alerts_fire_count' => (int) $group_stat[0]['alerts_fired'], 'monitor_ok' => (int) $group_stat[0]['normal'], @@ -11096,10 +11311,33 @@ function reporting_get_group_stats_resume($id_group=0, $access='AR', $ignore_per 'agent_warning' => (int) $group_stat[0]['agents_warnings'], 'agent_critical' => (int) $group_stat[0]['agents_critical'], 'total_checks' => (int) $group_stat[0]['modules'], - 'total_alerts' => (int) groups_monitor_alerts($group_array), + 'total_alerts' => (int) groups_monitor_alerts($group_stat[0]['id_group']), 'total_agents' => (int) $group_stat[0]['agents'], 'utimestamp' => (int) $group_stat[0]['utimestamp'], ]; + + if ($recursive === true) { + unset($group_stat[0]); + foreach ($group_stat as $value) { + $data['monitor_checks'] = ($data['monitor_checks'] + $value['modules']); + $data['monitor_alerts'] = ($data['monitor_alerts'] + groups_monitor_alerts($value['id_group'])); + $data['monitor_alerts_fired'] = ($data['monitor_alerts_fired'] + $value['alerts_fired']); + $data['monitor_alerts_fire_count'] = ($data['monitor_alerts_fire_count'] + $value['alerts_fired']); + $data['monitor_ok'] = ($data['monitor_ok'] + $value['normal']); + $data['monitor_warning'] = ($data['monitor_warning'] + $value['warning']); + $data['monitor_critical'] = ($data['monitor_critical'] + $value['critical']); + $data['monitor_unknown'] = ($data['monitor_unknown'] + $value['unknown']); + $data['monitor_not_init'] = ($data['monitor_not_init'] + $value['non-init']); + $data['agent_not_init'] = ($data['agent_not_init'] + $value['agents_not_init']); + $data['agent_unknown'] = ($data['agent_unknown'] + $value['agents_unknown']); + $data['agent_ok'] = ($data['agent_ok'] + $value['agents_normal']); + $data['agent_warning'] = ($data['agent_warning'] + $value['agents_warnings']); + $data['agent_critical'] = ($data['agent_critical'] + $value['agents_critical']); + $data['total_checks'] = ($data['total_checks'] + $value['modules']); + $data['total_alerts'] = ($data['total_alerts'] + groups_monitor_alerts($value['id_group'])); + $data['total_agents'] = ($data['total_agents'] + $value['agents']); + } + } } } @@ -14623,6 +14861,16 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) ); } + $showLabelTicks = true; + if (isset($content['showLabelTicks']) === true) { + $showLabelTicks = $content['showLabelTicks']; + } + + $height_graph = 80; + if (isset($content['height_graph']) === true) { + $height_graph = $content['height_graph']; + } + $return['title'] = $title; $return['landscape'] = $content['landscape']; $return['pagebreak'] = $content['pagebreak']; @@ -14871,7 +15119,6 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) ]; $width_graph = 100; - $height_graph = 80; if (empty($array_result) === false) { $return['chart'] = flot_slicesbar_graph( $array_result, @@ -14882,7 +15129,7 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) $colors, $config['fontpath'], $config['round_corner'], - $homeurl, + $config['homeurl'], '', '', false, @@ -14891,7 +15138,7 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) true, $ttl, $content['sizeForTicks'], - true, + $showLabelTicks, $report['datetime'] ); } else { diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 835fc147f0..7cce81cd4d 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -961,8 +961,8 @@ function reporting_html_top_n($table, $item, $pdf=0) if ($pdf !== 0) { $return_pdf .= $item['charts']['pie']; } else { - $table->colspan['char_pie']['cell'] = 3; - $table->data['char_pie']['cell'] = $item['charts']['pie']; + $table->colspan['char_pie'][0] = 2; + $table->data['char_pie'][0] = $item['charts']['pie']; } } @@ -970,8 +970,8 @@ function reporting_html_top_n($table, $item, $pdf=0) if ($pdf !== 0) { $return_pdf .= $item['charts']['bars']; } else { - $table->colspan['char_bars']['cell'] = 3; - $table->data['char_bars']['cell'] = $item['charts']['bars']; + // $table->colspan['char_bars']['cell'] = 3; + $table->data['char_pie'][1] = $item['charts']['bars']; } } @@ -4815,6 +4815,7 @@ function reporting_html_general($table, $item, $pdf=0) } $list_modules = array_keys($list_modules); + $table1 = new stdClass(); $table1->width = '99%'; $table1->data = []; $table1->head = array_merge([__('Agent')], $list_modules); @@ -5967,7 +5968,7 @@ function reporting_get_event_histogram($events, $text_header_event=false) true, 1, false, - false + true ); $table->data[0][0] = $slicebar; @@ -6126,7 +6127,7 @@ function reporting_get_event_histogram_meta($width, $events) true, 1, false, - false + true ); $table->data[0][0] = $slicebar; diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index bc0d48137f..cbf812d2bd 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -1440,13 +1440,17 @@ function snmp_browser_create_modules_snmp( /** * Prints html for create module from snmp massive dialog * - * @param string $url_form - * @param string $title - * @param boolean $return - * @return void + * @param string $target Target. + * @param string $snmp_conf Conf. + * @param boolean $return Type return. + * + * @return string Output html. */ -function snmp_browser_print_create_module_massive($target='agent', $snmp_conf, $return=false) -{ +function snmp_browser_print_create_module_massive( + $target='agent', + $snmp_conf='', + $return=false +) { global $config; // String for labels. @@ -1458,6 +1462,10 @@ function snmp_browser_print_create_module_massive($target='agent', $snmp_conf, $ case 'policy': $target_item = 'Policies'; break; + + default: + // Not possible. + break; } $output = ""; diff --git a/pandora_console/include/functions_tactical.php b/pandora_console/include/functions_tactical.php index 15ebdd3777..3b50ba5476 100644 --- a/pandora_console/include/functions_tactical.php +++ b/pandora_console/include/functions_tactical.php @@ -478,7 +478,14 @@ function tactical_get_data( $list['_monitors_alerts_fired_'] = tactical_monitor_fired_alerts(explode(',', $user_groups_ids), $user_strict, explode(',', $user_groups_ids)); $list['_monitors_alerts_'] = tactical_monitor_alerts($user_strict); - $total_agentes = agents_get_agents(false, ['count(DISTINCT id_agente) as total_agents'], 'AR', false, false, 1); + $total_agentes = agents_get_agents( + ['id_grupo' => explode(',', $user_groups_ids)], + ['count(DISTINCT id_agente) as total_agents'], + 'AR', + false, + false, + 1 + ); $list['_total_agents_'] = $total_agentes[0]['total_agents']; $list['_monitor_checks_'] = ($list['_monitors_not_init_'] + $list['_monitors_unknown_'] + $list['_monitors_warning_'] + $list['_monitors_critical_'] + $list['_monitors_ok_']); @@ -493,16 +500,32 @@ function tactical_get_data( } -function tactical_status_modules_agents($id_user=false, $user_strict=false, $access='AR', $force_group_and_tag=true) +function tactical_status_modules_agents($id_user=false, $user_strict=false, $access='AR', $groups=[]) { global $config; - if ($id_user == false) { + if ($id_user === false) { $id_user = $config['id_user']; } + if (empty($groups) === false) { + if (is_array($groups) === false) { + $groups = explode(',', (string) $groups); + // Group id as key. + $groups = array_flip($groups); + } + + if (isset($groups[0]) === true) { + $groups = []; + } + } + $acltags = tags_get_user_groups_and_tags($id_user, $access, $user_strict); + if (empty($groups) === false) { + $acltags = array_intersect_key($acltags, $groups); + } + $result_list = tactical_get_data($id_user, $user_strict, $acltags); return $result_list; diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index f0bdbbc613..f0f3d921ff 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -817,7 +817,7 @@ function treeview_printTable($id_agente, $server_data=[], $no_head=false) $events_graph .= graph_graphic_agentevents( $id_agente, '340px;margin:0', - '130px', + '60px', SECONDS_1DAY, '', true, diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index af58985d08..fe6e784748 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -3184,6 +3184,7 @@ function ui_progress_extend( * 'class' => th class. * 'style' => th style. * 'text' => 'column1'. + * 'title' => 'column title'. * ] * ], * 'columns' => [ @@ -3219,12 +3220,15 @@ function ui_progress_extend( * 'option2' * ... * ] + * 'no_toggle' => Pint form withouth UI toggle. * ] * ], * 'extra_html' => HTML content to be placed after 'filter' section. * 'drawCallback' => function to be called after draw. Sample in: * https://datatables.net/examples/advanced_init/row_grouping.html * ] + * 'zeroRecords' => Message when zero records obtained from filter.(Leave blank for default). + * 'emptyTable' => Message when table data empty.(Leave blank for default). * End. * * @return string HTML code with datatable. @@ -3429,7 +3433,18 @@ function ui_print_datatable(array $parameters) } // Languages. - $processing = __('Processing'); + $processing = '
    '; + $processing .= ''.__('Processing').' '; + $processing .= str_replace( + '"', + "'", + html_print_image( + 'images/spinner.gif', + true + ) + ); + $processing .= '
    '; + $zeroRecords = isset($parameters['zeroRecords']) === true ? $parameters['zeroRecords'] : __('No matching records found'); $emptyTable = isset($parameters['emptyTable']) === true ? $parameters['emptyTable'] : __('No data available in table'); @@ -3478,7 +3493,8 @@ function ui_print_datatable(array $parameters) $(document).ready(function(){ $.fn.dataTable.ext.errMode = "none"; $.fn.dataTable.ext.classes.sPageButton = "'.$pagination_class.'"; - dt_'.$table_id.' = $("#'.$table_id.'").DataTable({ + + var settings_datatable = { drawCallback: function(settings) {'; if (isset($parameters['drawCallback'])) { $js .= $parameters['drawCallback']; @@ -3541,6 +3557,10 @@ function ui_print_datatable(array $parameters) url: "'.ui_get_full_url('ajax.php', false, false, false).'", type: "POST", dataSrc: function (json) { + if($("#'.$form_id.'_search_bt") != undefined) { + $("#'.$form_id.'_loading").remove(); + } + if (json.error) { console.error(json.error); $("#error-'.$table_id.'").html(json.error); @@ -3587,6 +3607,18 @@ function ui_print_datatable(array $parameters) } }, data: function (data) { + if($("#'.$form_id.'_search_bt") != undefined) { + var loading = \''.html_print_image( + 'images/spinner.gif', + true, + [ + 'id' => $form_id.'_loading', + 'class' => 'loading-search-datatables-button', + ] + ).'\'; + $("#'.$form_id.'_search_bt").parent().append(loading); + } + inputs = $("#'.$form_id.' :input"); values = {}; @@ -3626,7 +3658,9 @@ function ui_print_datatable(array $parameters) $js .= ' ], order: [[ '.$order.' ]] - }); + }; + + var dt_'.$table_id.' = $("#'.$table_id.'").DataTable(settings_datatable); $("#'.$form_id.'_search_bt").click(function (){ dt_'.$table_id.'.draw().page(0) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index fd01d5dad8..0ff126ed8a 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -2652,8 +2652,8 @@ function visual_map_process_wizard_add_modules( $image, $id_layout, $range, - $width=0, - $height=0, + $width, + $height, $period, $process_value, $percentileitem_width, @@ -2669,6 +2669,14 @@ function visual_map_process_wizard_add_modules( $fontf='lato', $fonts='12pt' ) { + if (empty($width) === true) { + $width = 0; + } + + if (empty($height) === true) { + $height = 0; + } + if (empty($id_modules)) { $return = ui_print_error_message( __('No modules selected'), @@ -2923,8 +2931,8 @@ function visual_map_process_wizard_add_agents( $image, $id_layout, $range, - $width=0, - $height=0, + $width, + $height, $period, $process_value, $percentileitem_width, @@ -2942,6 +2950,14 @@ function visual_map_process_wizard_add_agents( ) { global $config; + if (empty($width) === true) { + $width = 0; + } + + if (empty($height) === true) { + $height = 0; + } + if (empty($id_agents)) { $return = ui_print_error_message( __('No agents selected'), @@ -4171,8 +4187,14 @@ function visual_map_get_layout_status($layout_id, $status_data=[], $depth=0) * * @return string The text for the parent. */ -function visual_map_create_internal_name_item($label=null, $type, $image, $agent=null, $id_module, $idData) -{ +function visual_map_create_internal_name_item( + $label=null, + $type='', + $image='', + $agent=null, + $id_module=0, + $idData='' +) { $text = ''; if (empty($label)) { diff --git a/pandora_console/include/global_config.php b/pandora_console/include/global_config.php index d23c6994a6..b14c2b0ae5 100644 --- a/pandora_console/include/global_config.php +++ b/pandora_console/include/global_config.php @@ -1,5 +1,7 @@ $options['x']['font']['weight'], 'family' => $options['x']['font']['family'], 'variant' => $options['x']['font']['variant'], - 'color' => $options['x']['font']['color'], + 'color' => ($options['agent_view'] === true) ? 'black' : $options['x']['font']['color'], ], 'show' => $options['x']['show'], 'position' => $options['x']['position'], @@ -516,7 +516,7 @@ function vbar_graph( 'weight' => $options['y']['font']['weight'], 'family' => $options['y']['font']['family'], 'variant' => $options['y']['font']['variant'], - 'color' => $options['y']['font']['color'], + 'color' => ($options['agent_view'] === true) ? 'black' : $options['y']['font']['color'], ], 'show' => $options['y']['show'], 'position' => $options['y']['position'], @@ -534,8 +534,8 @@ function vbar_graph( 'aboveData' => $options['grid']['aboveData'], 'color' => $options['grid']['color'], 'backgroundColor' => $options['grid']['backgroundColor'], - 'margin' => $options['grid']['margin'], - 'labelMargin' => $options['grid']['labelMargin'], + 'margin' => ($options['agent_view'] === true) ? 6 : $options['grid']['margin'], + 'labelMargin' => ($options['agent_view'] === true) ? 12 : $options['grid']['labelMargin'], 'axisMargin' => $options['grid']['axisMargin'], 'markings' => $options['grid']['markings'], 'borderWidth' => $options['grid']['borderWidth'], @@ -561,6 +561,10 @@ function vbar_graph( ], ]; + if ($options['agent_view'] === true) { + $params['agent_view'] = true; + } + if (empty($params['data']) === true) { return graph_nodata_image( 0, diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index fb6a79cd3d..16e1b31a82 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -816,13 +816,13 @@ function pandoraFlotSlicebar( } }, grid: { - borderWidth: 1, - borderColor: "#C1C1C1", + borderWidth: 0, + borderColor: "transparent", tickColor: "#fff" }, xaxes: [ { - show: true, + show: show_date, tickFormatter: xFormatter, color: "", tickSize: intervaltick, diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 033382e5ea..8f5256e757 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -670,6 +670,10 @@ function flot_vcolumn_chart(array $options) $style .= 'height:'.$options['generals']['pdf']['height'].'px;'; } + if ($options['agent_view'] === true) { + $style = 'width: 95%; height: 85px'; + } + $class = ''; if ($options['generals']['rotate'] === true) { $class = 'bars-graph-rotate'; diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index d081cf7fca..896149b892 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -2869,7 +2869,7 @@ function donutNarrowGraph( arc = d3.svg .arc() .outerRadius(radius) - .innerRadius(radius - radius / 6); + .innerRadius(radius - radius / 4); svg = donutbody .append("svg") diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index 792ee4e56a..690a9074ff 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -1,4 +1,4 @@ -/* global $ */ +/* global $ jQuery */ /* exported load_modal */ var ENTERPRISE_DIR = "enterprise"; @@ -2020,6 +2020,7 @@ function progressBarSvg(option) { return svg; } +// eslint-disable-next-line no-unused-vars function inArray(needle, haystack) { var length = haystack.length; for (var i = 0; i < length; i++) { @@ -2028,6 +2029,65 @@ function inArray(needle, haystack) { return false; } +// eslint-disable-next-line no-unused-vars +function agent_multiple_change(e, info) { + info = JSON.parse(atob(info)); + jQuery.post( + "ajax.php", + { + page: "operation/agentes/ver_agente", + get_modules_group_json: 1, + selection: $("#" + info.selectionModulesNameId).val(), + id_agents: $("#" + info.agent_name.replace("[]", "")).val(), + select_mode: 1 + }, + function(data) { + var name = info.modules_name.replace("[]", ""); + $("#" + name).html(""); + $("#checkbox-" + name + "-check-all").prop("checked", false); + if (data) { + jQuery.each(data, function(id, value) { + var option = $("") + .attr("value", id) + .html(value); + $("#" + name).append(option); + }); + } + }, + "json" + ); +} + +// eslint-disable-next-line no-unused-vars +function selection_multiple_change(info) { + info = JSON.parse(atob(info)); + jQuery.post( + "ajax.php", + { + page: "operation/agentes/ver_agente", + get_modules_group_json: 1, + id_agents: $("#" + info.agent_name.replace("[]", "")).val(), + selection: $("#" + info.selectionModulesNameId).val(), + select_mode: 1 + }, + function(data) { + var name = info.modules_name.replace("[]", ""); + $("#" + name).html(""); + // Check module all. + $("#checkbox-" + name + "-check-all").prop("checked", false); + if (data) { + jQuery.each(data, function(id, value) { + var option = $("") + .attr("value", id) + .html(value); + $("#" + name).append(option); + }); + } + }, + "json" + ); +} + /* * Creates a progressbar. * @param id the id of the div we want to transform in a progressbar. diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index ab276cda9e..b7f4170afa 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -1,4 +1,4 @@ -/*global jQuery, $, forced_title_callback, confirmDialog*/ +/*global jQuery, $, forced_title_callback, confirmDialog, progressTimeBar*/ // Show the modal window of an event function show_event_dialog(event, dialog_page) { @@ -1028,3 +1028,256 @@ function process_buffers(buffers) { }); } } + +function openSoundEventModal(settings) { + settings = JSON.parse(atob(settings)); + + // Check modal exists and is open. + if ( + $("#modal-sound").hasClass("ui-dialog-content") && + $("#modal-sound").dialog("isOpen") + ) { + return; + } + + // Initialize modal. + $("#modal-sound") + .empty() + .dialog({ + title: settings.title, + resizable: false, + modal: true, + position: { my: "right top", at: "right bottom", of: window }, + overlay: { + opacity: 0.5, + background: "black" + }, + width: 600, + height: 600, + open: function() { + $.ajax({ + method: "post", + url: settings.url, + data: { + page: settings.page, + drawConsoleSound: 1 + }, + dataType: "html", + success: function(data) { + $("#modal-sound").append(data); + $("#tabs-sound-modal").tabs({ + disabled: [1] + }); + + // Test sound. + $("#button-melody_sound").click(function() { + var sound = false; + if ($("#id_sound_event").length == 0) { + sound = true; + } + + test_sound_button(sound); + }); + + // Play Stop. + $("#button-start-search").click(function() { + var mode = $("#hidden-mode_alert").val(); + var action = false; + if (mode == 0) { + action = true; + } + + action_events_sound(action, settings); + }); + + // Silence Alert. + $("#button-no-alerts").click(function() { + if ($("#button-no-alerts").hasClass("silence-alerts") === true) { + // Remove audio. + remove_audio(); + + // Clean events. + $("#tabs-sound-modal .elements-discovered-alerts ul").empty(); + $("#tabs-sound-modal .empty-discovered-alerts").removeClass( + "invisible_important" + ); + + // Clean progress. + $("#progressbar_time").empty(); + + // Change img button. + $("#button-no-alerts") + .removeClass("silence-alerts") + .addClass("alerts"); + // Change value button. + $("#button-no-alerts").val(settings.noAlert); + + // Background button. + $(".container-button-alert").removeClass("fired"); + + // New progress. + listen_event_sound(settings); + } + }); + }, + error: function(error) { + console.error(error); + } + }); + }, + close: function() { + remove_audio(); + $(this).dialog("destroy"); + } + }) + .show(); +} + +function test_sound_button(test_sound) { + if (test_sound === true) { + add_audio(); + } else { + remove_audio(); + } +} + +function action_events_sound(mode, settings) { + if (mode === true) { + // Enable tabs. + $("#tabs-sound-modal").tabs("option", "disabled", [0]); + // Active tabs. + $("#tabs-sound-modal").tabs("option", "active", 1); + // Change mode. + $("#hidden-mode_alert").val(1); + // Change img button. + $("#button-start-search") + .removeClass("play") + .addClass("stop"); + // Change value button. + $("#button-start-search").val(settings.stop); + // Add Progress bar. + listen_event_sound(settings); + } else { + // Enable tabs. + $("#tabs-sound-modal").tabs("option", "disabled", [1]); + // Active tabs. + $("#tabs-sound-modal").tabs("option", "active", 0); + // Change mode. + $("#hidden-mode_alert").val(0); + // Change img button. + $("#button-start-search") + .removeClass("stop") + .addClass("play"); + // Change value button. + $("#button-start-search").val(settings.start); + // Remove progress bar. + $("#progressbar_time").empty(); + // Remove audio. + remove_audio(); + // Clean events. + $("#tabs-sound-modal .elements-discovered-alerts ul").empty(); + $("#tabs-sound-modal .empty-discovered-alerts").removeClass( + "invisible_important" + ); + // Change img button. + $("#button-no-alerts") + .removeClass("silence-alerts") + .addClass("alerts"); + // Change value button. + $("#button-no-alerts").val(settings.noAlert); + + // Background button. + $(".container-button-alert").removeClass("fired"); + } +} + +function add_audio() { + var sound = "./include/sounds/" + $("#tabs-sound-modal #sound_id").val(); + $(".actions-sound-modal").append( + "