diff --git a/pandora_console/extras/mr/33.sql b/pandora_console/extras/mr/33.sql index bfe1777e63..8db9dc91ab 100644 --- a/pandora_console/extras/mr/33.sql +++ b/pandora_console/extras/mr/33.sql @@ -16,10 +16,45 @@ INSERT INTO `tnetwork_component` (`name`, `description`, `id_group`, `type`, `ma INSERT INTO `tnetwork_component` (`name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`, `custom_string_1`, `post_process`, `custom_string_3`, `wizard_level`, `custom_integer_2`, `critical_instructions`, `unit`, `unknown_instructions`, `macros`, `warning_inverse`, `warning_instructions`, `tags`, `critical_inverse`, `module_macros`, `id_category`, `min_ff_event_warning`, `disabled_types_event`, `ff_type`, `min_ff_event_normal`, `dynamic_interval`, `min_ff_event_critical`, `dynamic_min`, `each_ff`, `dynamic_two_tailed`, `dynamic_max`, `dynamic_next`) VALUES ('Linux available memory percent','Available memory %',43,34,0,0,300,0,'free | grep Mem | awk '{print $NF/$2 * 100}'','','','',4,2,0,'','','',0,0,1,0.00,0.00,'',0.00,0.00,'',0,'','linux','',0,0,0.000000000000000,'%','nowizard','','','','',0,0,0,'','{\"going_unknown\":1}','',0,0,0,0,0,0,0,0,0,0); INSERT INTO `tnetwork_component` (`name`, `description`, `id_group`, `type`, `max`, `min`, `module_interval`, `tcp_port`, `tcp_send`, `tcp_rcv`, `snmp_community`, `snmp_oid`, `id_module_group`, `id_modulo`, `id_plugin`, `plugin_user`, `plugin_pass`, `plugin_parameter`, `max_timeout`, `max_retries`, `history_data`, `min_warning`, `max_warning`, `max_critical`, `str_warning`, `min_ff_event`, `min_critical`, `custom_string_2`, `str_critical`, `custom_integer_1`, `custom_string_1`, `post_process`, `custom_string_3`, `wizard_level`, `custom_integer_2`, `critical_instructions`, `unit`, `unknown_instructions`, `macros`, `warning_inverse`, `warning_instructions`, `tags`, `critical_inverse`, `module_macros`, `id_category`, `min_ff_event_warning`, `disabled_types_event`, `ff_type`, `min_ff_event_normal`, `dynamic_interval`, `min_ff_event_critical`, `dynamic_min`, `each_ff`, `dynamic_two_tailed`, `dynamic_max`, `dynamic_next`) VALUES ('Linux available disk /','Available free space in mountpoint /',43,34,0,0,300,0,'df / | tail -n +2 | awk '{print $(NF-1)}' | tr -d '%'','','','',4,2,0,'','','',0,0,1,0.00,0.00,'0.00',0.00,0.00,'',0,'','inherited','',0,0,0.000000000000000,'','nowizard','','nowizard','0','',0,0,0,'','{\"going_unknown\":1}','',0,0,0,0,0,0,0,0,0,0); +ALTER TABLE `tevent_rule` MODIFY COLUMN `event_type` enum('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal') default ''; +ALTER TABLE `tevent_rule` MODIFY COLUMN `criticity` int(4) unsigned DEFAULT NULL; +ALTER TABLE `tevent_rule` MODIFY COLUMN `id_grupo` mediumint(4) DEFAULT NULL; + ALTER TABLE `tevent_rule` ADD COLUMN `log_content` TEXT; ALTER TABLE `tevent_rule` ADD COLUMN `log_source` TEXT; ALTER TABLE `tevent_rule` ADD COLUMN `log_agent` TEXT; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_agent` text COMMENT 'Operator for agent'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_usuario` text COMMENT 'Operator for id_usuario'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_grupo` text COMMENT 'Operator for id_grupo'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_evento` text COMMENT 'Operator for evento'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_event_type` text COMMENT 'Operator for event_type'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_module` text COMMENT 'Operator for module'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_alert` text COMMENT 'Operator for alert'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_criticity` text COMMENT 'Operator for criticity'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_user_comment` text COMMENT 'Operator for user_comment'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_tag` text COMMENT 'Operator for id_tag'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_content` text COMMENT 'Operator for log_content'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_source` text COMMENT 'Operator for log_source'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_agent` text COMMENT 'Operator for log_agent'; + +UPDATE `tevent_rule` SET `operator_agent` = "REGEX" WHERE `agent` != ''; +UPDATE `tevent_rule` SET `operator_id_usuario` = "REGEX" WHERE `id_usuario` != ''; +UPDATE `tevent_rule` SET `operator_id_grupo` = "REGEX" WHERE `id_grupo` > 0; +UPDATE `tevent_rule` SET `operator_evento` = "REGEX" WHERE `evento` != ''; +UPDATE `tevent_rule` SET `operator_event_type` = "REGEX" WHERE `event_type` != ''; +UPDATE `tevent_rule` SET `operator_module` = "REGEX" WHERE `module` != ''; +UPDATE `tevent_rule` SET `operator_alert` = "REGEX" WHERE `alert` != ''; +UPDATE `tevent_rule` SET `operator_criticity` = "REGEX" WHERE `criticity` != '99'; +UPDATE `tevent_rule` SET `operator_user_comment` = "REGEX" WHERE `user_comment` != ''; +UPDATE `tevent_rule` SET `operator_id_tag` = "REGEX" WHERE `id_tag` > 0; +UPDATE `tevent_rule` SET `operator_log_content` = "REGEX" WHERE `log_content` != ''; +UPDATE `tevent_rule` SET `operator_log_source` = "REGEX" WHERE `log_source` != ''; +UPDATE `tevent_rule` SET `operator_log_agent` = "REGEX" WHERE `log_agent` != ''; + +ALTER TABLE `tevent_alert` ADD COLUMN `special_days` tinyint(1) default 0; +ALTER TABLE `tevent_alert` MODIFY COLUMN `time_threshold` int(10) NOT NULL default 86400; + CREATE TABLE `tremote_command` ( `id` SERIAL, `name` varchar(150) NOT NULL, diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 9d182b0a54..42706ea5d0 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -579,6 +579,39 @@ CREATE TABLE IF NOT EXISTS `tevent_rule` ( ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ALTER TABLE `tevent_rule` ADD COLUMN `group_recursion` INT(1) unsigned default 0; +ALTER TABLE `tevent_rule` ADD COLUMN `log_content` TEXT; +ALTER TABLE `tevent_rule` ADD COLUMN `log_source` TEXT; +ALTER TABLE `tevent_rule` ADD COLUMN `log_agent` TEXT; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_agent` text COMMENT 'Operator for agent'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_usuario` text COMMENT 'Operator for id_usuario'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_grupo` text COMMENT 'Operator for id_grupo'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_evento` text COMMENT 'Operator for evento'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_event_type` text COMMENT 'Operator for event_type'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_module` text COMMENT 'Operator for module'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_alert` text COMMENT 'Operator for alert'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_criticity` text COMMENT 'Operator for criticity'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_user_comment` text COMMENT 'Operator for user_comment'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_id_tag` text COMMENT 'Operator for id_tag'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_content` text COMMENT 'Operator for log_content'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_source` text COMMENT 'Operator for log_source'; +ALTER TABLE `tevent_rule` ADD COLUMN `operator_log_agent` text COMMENT 'Operator for log_agent'; +ALTER TABLE `tevent_rule` MODIFY COLUMN `event_type` enum('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal') default ''; +ALTER TABLE `tevent_rule` MODIFY COLUMN `criticity` int(4) unsigned DEFAULT NULL; +ALTER TABLE `tevent_rule` MODIFY COLUMN `id_grupo` mediumint(4) DEFAULT NULL; + +UPDATE `tevent_rule` SET `operator_agent` = "REGEX" WHERE `agent` != ''; +UPDATE `tevent_rule` SET `operator_id_usuario` = "REGEX" WHERE `id_usuario` != ''; +UPDATE `tevent_rule` SET `operator_id_grupo` = "REGEX" WHERE `id_grupo` > 0; +UPDATE `tevent_rule` SET `operator_evento` = "REGEX" WHERE `evento` != ''; +UPDATE `tevent_rule` SET `operator_event_type` = "REGEX" WHERE `event_type` != ''; +UPDATE `tevent_rule` SET `operator_module` = "REGEX" WHERE `module` != ''; +UPDATE `tevent_rule` SET `operator_alert` = "REGEX" WHERE `alert` != ''; +UPDATE `tevent_rule` SET `operator_criticity` = "REGEX" WHERE `criticity` != '99'; +UPDATE `tevent_rule` SET `operator_user_comment` = "REGEX" WHERE `user_comment` != ''; +UPDATE `tevent_rule` SET `operator_id_tag` = "REGEX" WHERE `id_tag` > 0; +UPDATE `tevent_rule` SET `operator_log_content` = "REGEX" WHERE `log_content` != ''; +UPDATE `tevent_rule` SET `operator_log_source` = "REGEX" WHERE `log_source` != ''; +UPDATE `tevent_rule` SET `operator_log_agent` = "REGEX" WHERE `log_agent` != ''; -- ----------------------------------------------------- -- Table `tevent_alert` @@ -627,6 +660,9 @@ CREATE TABLE IF NOT EXISTS `tevent_alert` ( PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; +ALTER TABLE `tevent_alert` ADD COLUMN `special_days` tinyint(1) default 0; +ALTER TABLE `tevent_alert` MODIFY COLUMN `time_threshold` int(10) NOT NULL default 86400; + -- ----------------------------------------------------- -- Table `tevent_alert_action` -- ----------------------------------------------------- @@ -2357,7 +2393,7 @@ CREATE TABLE `tvisual_console_elements_cache` ( CREATE TABLE IF NOT EXISTS `tcredential_store` ( `identifier` varchar(100) NOT NULL, `id_group` mediumint(4) unsigned NOT NULL DEFAULT 0, - `product` enum('CUSTOM', 'AWS', 'AZURE', 'GOOGLE') default 'CUSTOM', + `product` enum('CUSTOM', 'AWS', 'AZURE', 'GOOGLE', 'SAP') default 'CUSTOM', `username` text, `password` text, `extra_1` text, diff --git a/pandora_console/godmode/wizards/Wizard.main.php b/pandora_console/godmode/wizards/Wizard.main.php index 3e43f0bf69..2fe34770ad 100644 --- a/pandora_console/godmode/wizards/Wizard.main.php +++ b/pandora_console/godmode/wizards/Wizard.main.php @@ -514,7 +514,9 @@ class Wizard $output .= ''; } else { - if ($input['arguments']['type'] != 'hidden') { + if ($input['arguments']['type'] != 'hidden' + && $input['arguments']['type'] != 'hidden_extended' + ) { if (!$direct) { $output .= '
  • '; } @@ -572,7 +574,9 @@ class Wizard $output .= '
  • '; } else { - if ($input['arguments']['type'] != 'hidden') { + if ($input['arguments']['type'] != 'hidden' + && $input['arguments']['type'] != 'hidden_extended' + ) { if ($input['arguments']['inline'] != 'true') { $output .= '
    '; } else { @@ -675,7 +679,9 @@ class Wizard $output .= ''; } else { - if ($input['arguments']['type'] != 'hidden') { + if ($input['arguments']['type'] != 'hidden' + && $input['arguments']['type'] != 'hidden_extended' + ) { $output .= '
  • '; $output .= ''; $output .= $this->printInput($input['arguments']); diff --git a/pandora_console/images/sortable.png b/pandora_console/images/sortable.png new file mode 100644 index 0000000000..9b6f09ec34 Binary files /dev/null and b/pandora_console/images/sortable.png differ diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index e85798cfde..e15a0a0f97 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -3542,17 +3542,22 @@ function agents_get_sap_agents($id_agent) $array_agents = []; foreach ($sap_modules as $module => $key) { + $new_ones = db_get_all_rows_sql( + 'SELECT ta.id_agente,ta.alias + FROM tagente ta + INNER JOIN tagente_modulo tam + ON tam.id_agente = ta.id_agente + WHERE tam.nombre + LIKE "%SAP%" + GROUP BY ta.id_agente' + ); + if ($new_ones === false) { + continue; + } + $array_agents = array_merge( $array_agents, - db_get_all_rows_sql( - 'SELECT ta.id_agente,ta.alias - FROM tagente ta - INNER JOIN tagente_modulo tam - ON tam.id_agente = ta.id_agente - WHERE tam.nombre - LIKE "%SAP%" - GROUP BY ta.id_agente' - ) + $new_ones ); } diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index e329af6013..9bf4ae2be3 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -1828,11 +1828,18 @@ function html_print_input_hidden($name, $value, $return=false, $class=false) * @param string $id Input value. * @param boolean $return Whether to return an output string or echo now (optional, echo by default). * @param string $class Set the class of input. + * @param boolean $quotes Use simple quotes or double quotes. * * @return string HTML code if return parameter is true. */ -function html_print_input_hidden_extended($name, $value, $id, $return=false, $class=false) -{ +function html_print_input_hidden_extended( + $name, + $value, + $id, + $return=false, + $class=false, + $quotes=false +) { if ($class !== false) { $classText = 'class="'.$class.'"'; } else { @@ -1845,7 +1852,16 @@ function html_print_input_hidden_extended($name, $value, $id, $return=false, $cl $ouput_id = $id; } - $output = ''; + $quote = '"'; + if ($quotes === true) { + $quote = "'"; + } + + $output = '/include/javascript. The * file name should be like "name.js". The "name" would be the value * needed to pass to this function. diff --git a/pandora_console/include/styles/alert.css b/pandora_console/include/styles/alert.css index 3368bf0796..b466bca463 100644 --- a/pandora_console/include/styles/alert.css +++ b/pandora_console/include/styles/alert.css @@ -2,6 +2,44 @@ li#li-buttons-alert-list > div { margin-left: 10px; } +#rule-builder .rule-builder-actions li { + display: inline; + width: auto; +} + +#rule-builder .rule-builder-actions li label { + width: 0; +} + +div.white_box { + min-width: 800px; +} + +#rules, +ul.sample { + margin-bottom: 2em; + flex: 1 1 300px; +} + +#rules.flex-row label { + flex: 1 1 70px; +} + +#rules.flex-row div { + flex: 10 1 200px; +} + +span.rule-title { + font-family: "lato-lighter", "Open Sans", sans-serif; + font-weight: normal; + font-size: 2em; + text-align: center; + display: block; + margin-bottom: 0.8em; + width: 100%; +} + +li#li-filters_show_action_alerts > label, li#li-buttons-alert-list > label, li#li-filters-alert-list > label { width: initial; @@ -62,8 +100,6 @@ img.handle-alerts { .content { width: 80%; min-height: 4em; - border: 1px solid #ddd; - padding-top: 1em; padding-bottom: 1em; } ul.sample { @@ -79,21 +115,63 @@ ul.sample li:last-child { } div.target { flex-grow: 1; + flex-basis: auto; margin-left: 3em; - border: 1px solid #ddd; + display: flex; + flex-direction: column; +} +div.target.flex { + display: block; + border: 2px dashed #ddd; + margin-left: 0em; + margin-top: 10px; + padding: 1em; } +.fields, +.operators, +.variables, +.modifiers, +.nexos, +.blocks { + cursor: move; +} +div#rules.show::after { + content: "Drop here"; + position: relative; + top: 25%; + display: block; + left: 37%; + font-size: 3em; + color: #aaa; + overflow: hidden; + width: 6em; + background: #fff; + text-align: center; + z-index: 2; +} +div#rules.show { + box-shadow: 0 0 15px -5px #424242; + border: 1px solid #ddd; +} .field { display: inline-block; border-radius: 10px; padding: 5px; - padding-left: 8px; - padding-right: 8px; - margin: 3px; + font-size: 1.2em; + padding-left: 1em; + padding-right: 1em; + margin: 0 0.5em 0.5em 0px; color: #fff; font-family: "lato-lighter", "Open Sans", sans-serif; font-weight: 600; background-color: #333; + word-break: break-all; +} + +.field.opacityElements { + opacity: 0.2; + cursor: not-allowed; } .log { @@ -126,3 +204,63 @@ div.target { .inEdit { background-color: #888; } + +.info-container { + width: 100%; + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-around; +} + +.info-item { + width: 25%; +} + +.info-days { + width: 65%; +} + +.info-item table.info_table thead tr th { + text-align: center; +} + +.info-item table.info_table tbody tr { + border-bottom: none; +} + +.info-container table.no-class tbody tr td { + padding: 10px; +} + +.mode_table_firing { + margin-top: 20px; +} + +.mode_table_firing table.info_table thead tr th { + font-weight: bolder; +} + +.mode_table_firing table.info_table thead tr th img { + padding: 10px; + vertical-align: middle; +} + +#rules select.click-list-elements { + border-radius: 0px; + background-color: #424242; + border: 0px; + color: #fff; + font-family: "lato-lighter", "Open Sans", sans-serif; + font-weight: 600; +} +#rules select.click-list-elements.fields-elements-log { + background-color: #638460; +} +#rules select.click-list-elements.fields-elements-event { + background-color: #587cff; +} + +#rules select.click-list-elements:focus { + outline-color: transparent; +} diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 1ecd197ece..6d4deea60d 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -515,6 +515,14 @@ select:-internal-list-box { .no-text-imp { font-size: 0 !important; } +.noselect { + -webkit-touch-callout: none; /* iOS Safari */ + -webkit-user-select: none; /* Safari */ + -khtml-user-select: none; /* Konqueror HTML */ + -moz-user-select: none; /* Old versions of Firefox */ + -ms-user-select: none; /* Internet Explorer/Edge */ + user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */ +} .flex-content-right { display: flex; flex-direction: row; @@ -4989,6 +4997,7 @@ input:checked + .p-slider:before { .action_buttons a, .action_buttons input[type="image"] { margin-right: 5px; + display: inline-block; } .action_buttons a:last-child, @@ -4998,7 +5007,6 @@ input:checked + .p-slider:before { .action_buttons a:hover { background-color: #fff; - display: inline-block; border-radius: 4px; } diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 28bb83d287..71bcdc4dcb 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -2772,12 +2772,12 @@ CREATE TABLE IF NOT EXISTS `tevent_rule` ( `count` int(4) NOT NULL default '1', `agent` text default '', `id_usuario` varchar(100) NOT NULL default '', - `id_grupo` mediumint(4) NOT NULL default '0', + `id_grupo` mediumint(4) default NULL, `evento` text NOT NULL default '', - `event_type` enum('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal') default 'unknown', + `event_type` enum('','unknown','alert_fired','alert_recovered','alert_ceased','alert_manual_validation','recon_host_detected','system','error','new_agent','going_up_warning','going_up_critical','going_down_warning','going_down_normal','going_down_critical','going_up_normal') default '', `module` text default '', `alert` text default '', - `criticity` int(4) unsigned NOT NULL default '0', + `criticity` int(4) unsigned default NULL, `user_comment` text NOT NULL, `id_tag` integer(10) unsigned NOT NULL default '0', `name` text default '', @@ -2785,6 +2785,19 @@ CREATE TABLE IF NOT EXISTS `tevent_rule` ( `log_content` text, `log_source` text, `log_agent` text, + `operator_agent` text COMMENT 'Operator for agent', + `operator_id_usuario` text COMMENT 'Operator for id_usuario', + `operator_id_grupo` text COMMENT 'Operator for id_grupo', + `operator_evento` text COMMENT 'Operator for evento', + `operator_event_type` text COMMENT 'Operator for event_type', + `operator_module` text COMMENT 'Operator for module', + `operator_alert` text COMMENT 'Operator for alert', + `operator_criticity` text COMMENT 'Operator for criticity', + `operator_user_comment` text COMMENT 'Operator for user_comment', + `operator_id_tag` text COMMENT 'Operator for id_tag', + `operator_log_content` text COMMENT 'Operator for log_content', + `operator_log_source` text COMMENT 'Operator for log_source', + `operator_log_agent` text COMMENT 'Operator for log_agent', PRIMARY KEY (`id_event_rule`), KEY `idx_id_event_alert` (`id_event_alert`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; @@ -2808,7 +2821,7 @@ CREATE TABLE IF NOT EXISTS `tevent_alert` ( `field8` text NOT NULL default '', `field9` text NOT NULL default '', `field10` text NOT NULL default '', - `time_threshold` int(10) NOT NULL default '0', + `time_threshold` int(10) NOT NULL default 86400, `max_alerts` int(4) unsigned NOT NULL default '1', `min_alerts` int(4) unsigned NOT NULL default '0', `time_from` time default '00:00:00', @@ -2833,6 +2846,7 @@ CREATE TABLE IF NOT EXISTS `tevent_alert` ( `priority` tinyint(4) default '0', `force_execution` tinyint(1) default '0', `group_by` enum ('','id_agente','id_agentmodule','id_alert_am','id_grupo') default '', + `special_days` tinyint(1) default 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; @@ -3692,4 +3706,4 @@ CREATE TABLE `tremote_command_target` ( PRIMARY KEY (`id`), FOREIGN KEY (`rcmd_id`) REFERENCES `tremote_command`(`id`) ON UPDATE CASCADE ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8; \ No newline at end of file +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new index 6a7dbc490f..99b1e34ba6 100644 --- a/pandora_server/conf/pandora_server.conf.new +++ b/pandora_server/conf/pandora_server.conf.new @@ -449,10 +449,17 @@ export_threads 1 eventserver 0 -# Event Server event window in seconds (3600 by default) (PANDORA FMS ENTERPRISE ONLY). +# Correlated alerts, event window in seconds (3600 by default) (PANDORA FMS ENTERPRISE ONLY). event_window 3600 +# Correlated Alerts, log window in seconds (3600 by default) (PANDORA FMS ENTERPRISE ONLY). + +log_window 3600 + +# Pre-load windows on start with available information. (PANDORA FMS ENTERPRISE ONLY). +#preload_windows 0 + # If set to 1, an alert will not be fired if the last event it generated is in 'in-process' status. event_inhibit_alerts 0 diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index 331a492499..5b502cd82f 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -303,6 +303,8 @@ sub pandora_load_config { $pa_config->{'openstreetmaps_description'} = 0; $pa_config->{"eventserver"} = 1; # 4.0 $pa_config->{"event_window"} = 3600; # 4.0 + $pa_config->{"log_window"} = 3600; # 7.741 + $pa_config->{"preload_windows"} = 0; # 7.741 $pa_config->{"icmpserver"} = 0; # 4.0 $pa_config->{"icmp_threads"} = 3; # 4.0 $pa_config->{"snmpserver"} = 0; # 4.0 @@ -980,6 +982,12 @@ sub pandora_load_config { elsif ($parametro =~ m/^event_window\s+([0-9]*)/i) { $pa_config->{'event_window'}= clean_blank($1); } + elsif ($parametro =~ m/^log_window\s+([0-9]*)/i) { + $pa_config->{'log_window'}= clean_blank($1); + } + elsif ($parametro =~ m/^preload_windows\s+([0-9]*)/i) { + $pa_config->{'preload_windows'}= clean_blank($1); + } elsif ($parametro =~ m/^snmp_threads\s+([0-9]*)/i) { $pa_config->{'snmp_threads'}= clean_blank($1); } diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 263ce5722c..ee005b0622 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -448,8 +448,9 @@ B: =cut ########################################################################## -sub pandora_evaluate_alert ($$$$$$$;$$$) { - my ($pa_config, $agent, $data, $last_status, $alert, $utimestamp, $dbh, $last_data_value, $events, $event) = @_; +sub pandora_evaluate_alert ($$$$$$$;$$$$) { + my ($pa_config, $agent, $data, $last_status, $alert, $utimestamp, $dbh, + $last_data_value, $correlatedItems, $event, $log) = @_; if (defined ($agent)) { logger ($pa_config, "Evaluating alert '" . safe_output($alert->{'name'}) . "' for agent '" . safe_output ($agent->{'nombre'}) . "'.", 10); @@ -592,9 +593,20 @@ sub pandora_evaluate_alert ($$$$$$$;$$$) { return $status if ($last_status != 3 && $alert->{'type'} eq 'unknown'); return $status if ($last_status == 0 && $alert->{'type'} eq 'not_normal'); } - # Event alert + # Correlated alert else { - my $rc = enterprise_hook ('evaluate_event_alert', [$pa_config, $dbh, $alert, $events, $event]); + my $rc = enterprise_hook ( + 'evaluate_correlated_alert', + [ + $pa_config, + $dbh, + $alert, + $correlatedItems, + $event, + $log + ] + ); + return $status unless (defined ($rc) && $rc == 1); } @@ -1203,7 +1215,7 @@ sub pandora_execute_action ($$$$$$$$$;$) { my $cid_data = "CID_IMAGE"; my $dataname = "CID_IMAGE.png"; - if ($data =~ /^data:image\/png;base64, /) { + if (defined($data) && $data =~ /^data:image\/png;base64, /) { # macro _data_ substitution in case is image. $attach_data_as_image = 1; my $_cid = ''; diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index b444e92672..9b2a725ae2 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -1531,7 +1531,7 @@ sub database_scan($$$) { && "$dbObjCfg->{'scan_databases'}" eq "1") { # Skip database scan in Oracle tasks - next if $self->{'type'} == DISCOVERY_APP_ORACLE; + next if defined($self->{'type'}) && $self->{'type'} == DISCOVERY_APP_ORACLE; my $__data = $obj->scan_databases(); diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index 05adbf79d1..92bf78c04d 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -21,7 +21,6 @@ use warnings; use Time::Local; use POSIX qw(setsid strftime); use POSIX; -use PandoraFMS::Sendmail; use HTML::Entities; use Encode; use Socket qw(inet_ntoa inet_aton); @@ -31,6 +30,9 @@ use LWP::UserAgent; use threads; use threads::shared; +use lib '/usr/lib/perl5'; +use PandoraFMS::Sendmail; + # New in 3.2. Used to sendmail internally, without external scripts # use Module::Loaded; @@ -824,6 +826,11 @@ sub enterprise_hook ($$) { # Try to call the function my $output = eval { &$func (@args); }; + # Discomment to debug. + if ($@) { + print STDERR $@; + } + # Check for errors #return undef if ($@); return '' unless defined ($output);