diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index b4320b1a4d..c55704e43b 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -2099,8 +2099,8 @@ class ConsoleSupervisor $this->notify( [ 'type' => 'NOTIF.EXT.ELASTICSEARCH', - 'title' => __('Log collector cannot connect to ElasticSearch'), - 'message' => __('ElasticSearch is not available using current configuration.'), + 'title' => __('Log collector cannot connect to OpenSearch'), + 'message' => __('OpenSearch is not available using current configuration.'), 'url' => '__url__/index.php?sec=general&sec2=godmode/setup/setup§ion=log', ] ); diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index f2579fe53a..1fe38aac0b 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -1676,6 +1676,18 @@ function config_update_config() if (config_update_value('Days_purge_old_information', (int) get_parameter('Days_purge_old_information'), true) === false) { $error_update[] = __('Days to purge old information'); } + + if (config_update_value('elasticsearch_user', get_parameter('elasticsearch_user'), true) === false) { + $error_update[] = __('User ElasticSearch server'); + } + + if (config_update_value('elasticsearch_pass', get_parameter('elasticsearch_pass'), true) === false) { + $error_update[] = __('Pass ElasticSearch server'); + } + + if (config_update_value('elasticsearch_https', get_parameter('elasticsearch_https'), true) === false) { + $error_update[] = __('Https ElasticSearch server'); + } break; case 'hist_db': @@ -2466,7 +2478,19 @@ function config_process_config() } if (!isset($config['Days_purge_old_information'])) { - config_update_value('Days_purge_old_information', 90); + config_update_value('Days_purge_old_information', 30); + } + + if (!isset($config['elasticsearch_user'])) { + config_update_value('elasticsearch_user', ''); + } + + if (!isset($config['elasticsearch_pass'])) { + config_update_value('elasticsearch_pass', ''); + } + + if (!isset($config['elasticsearch_https'])) { + config_update_value('elasticsearch_https', ''); } if (!isset($config['font_size'])) { diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 2552fbcdc1..5481152ac6 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -7304,7 +7304,9 @@ function html_print_select_date_range( $date_end='', $time_end='', $date_text=SECONDS_1DAY, - $class='w100p' + $class='w100p', + $date_format='Y/m/d', + $time_format='H:i:s' ) { global $config; @@ -7326,21 +7328,21 @@ function html_print_select_date_range( } if ($date_end === '') { - $date_end = date('Y/m/d'); + $date_end = date($date_format); } if ($date_init === '') { - $date_init = date('Y/m/d', strtotime($date_end.' -1 days')); + $date_init = date($date_format, strtotime($date_end.' -1 days')); } - $date_init = date('Y/m/d', strtotime($date_init)); + $date_init = date($date_format, strtotime($date_init)); if ($time_init === '') { - $time_init = date('H:i:s'); + $time_init = date($time_format); } if ($time_end === '') { - $time_end = date('H:i:s'); + $time_end = date($time_format); } $fields[SECONDS_1DAY] = __('Last 24hr'); diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 28b82739f3..3b193b8975 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -7326,7 +7326,8 @@ function ui_query_result_editor($name='default') ] ); - html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update']); + $execute_button = html_print_submit_button(__('Execute query'), 'execute_query', false, ['icon' => 'update'], true); + html_print_action_buttons($execute_button); } diff --git a/pandora_console/include/javascript/elasticsearch_queryResult.js b/pandora_console/include/javascript/elasticsearch_queryResult.js index c50f8955b3..13352ef975 100644 --- a/pandora_console/include/javascript/elasticsearch_queryResult.js +++ b/pandora_console/include/javascript/elasticsearch_queryResult.js @@ -1,5 +1,8 @@ var editor = ace.edit("elasticsearch_editor"); -editor.setValue(`GET _search \n{\n "query": {\n "match_all": {}\n }\n}`); +editor.setValue(`GET _search\n{\n "query": {\n "match_all": {}\n }\n}`); +editor.session.setMode("ace/mode/json"); +editor.setTheme("ace/theme/textmate"); +editor.session.setUseWorker(false); editor.clearSelection(); var view = ace.edit("elasticsearch_view"); diff --git a/pandora_console/include/styles/ace.css b/pandora_console/include/styles/ace.css index 15aecb624b..b68f0c47ea 100644 --- a/pandora_console/include/styles/ace.css +++ b/pandora_console/include/styles/ace.css @@ -3,7 +3,7 @@ } .query_result_editor_container { - width: 30%; + width: 40%; } .query_result_editor_container p { @@ -26,7 +26,7 @@ } .query_result_view_container { - width: 70%; + width: 60%; margin-left: 30px; } @@ -51,3 +51,12 @@ margin-top: 10px; margin-bottom: 10px; } + +.ace_editor, +.ace_editor * { + font-family: "Monaco", "Menlo", "Ubuntu Mono", "Droid Sans Mono", "Consolas", + monospace !important; + font-size: 14px !important; + font-weight: 400 !important; + letter-spacing: 0 !important; +} diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new index 2dfa5825b1..5886355160 100644 --- a/pandora_server/conf/pandora_server.conf.new +++ b/pandora_server/conf/pandora_server.conf.new @@ -776,3 +776,6 @@ netflowserver 0 # Number of threads for the Pandora FMS Netflow Server (PANDORA FMS ENTERPRISE ONLY). netflowserver_threads 1 +# Enable (1) or disable (0) the verification of SSL certificates (set to 0 when using self-signed certificates). +ssl_verify 0 + diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index a43ea76e3a..115c493da6 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -580,6 +580,8 @@ sub pandora_load_config { $pa_config->{"repl_dbuser"} = undef; # 7.0.770 $pa_config->{"repl_dbpass"} = undef; # 7.0.770 + $pa_config->{"ssl_verify"} = 0; # 7.0 774 + # Check for UID0 if ($pa_config->{"quiet"} != 0){ if ($> == 0){ @@ -1391,6 +1393,9 @@ sub pandora_load_config { elsif ($parametro =~ m/^repl_dbpass\s(.*)/i) { $pa_config->{'repl_dbpass'} = clean_blank($1); } + elsif ($parametro =~ m/^ssl_verify\s+([0-1])/i) { + $pa_config->{'ssl_verify'} = clean_blank($1); + } } # end of loop for parameter # # The DB host was overridden by pandora_ha.