Merge branch 'ent-9758-14470-alertas-triggereadas-deshabilitadas-cuentan-en-el-group-view' into 'develop'
Ent 9758 14470 alertas triggereadas deshabilitadas cuentan en el group view See merge request artica/pandorafms!5369
This commit is contained in:
commit
2cf0e301c5
|
@ -353,9 +353,18 @@ if ($delete_action) {
|
||||||
if ($enable_alert) {
|
if ($enable_alert) {
|
||||||
$searchFlag = true;
|
$searchFlag = true;
|
||||||
$id_alert = (int) get_parameter('id_alert');
|
$id_alert = (int) get_parameter('id_alert');
|
||||||
|
$id_agente = ($id_agente !== 0) ? $id_agente : alerts_get_agent_by_alert($id_alert);
|
||||||
|
|
||||||
$result = alerts_agent_module_disable($id_alert, false);
|
$result = alerts_agent_module_disable($id_alert, false);
|
||||||
|
|
||||||
|
if ($id_agente) {
|
||||||
|
db_process_sql(
|
||||||
|
'UPDATE tagente
|
||||||
|
SET update_alert_count = 1
|
||||||
|
WHERE id_agente = '.$id_agente
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if ($result) {
|
if ($result) {
|
||||||
db_pandora_audit(
|
db_pandora_audit(
|
||||||
AUDIT_LOG_ALERT_MANAGEMENT,
|
AUDIT_LOG_ALERT_MANAGEMENT,
|
||||||
|
@ -380,9 +389,18 @@ if ($enable_alert) {
|
||||||
if ($disable_alert) {
|
if ($disable_alert) {
|
||||||
$searchFlag = true;
|
$searchFlag = true;
|
||||||
$id_alert = (int) get_parameter('id_alert');
|
$id_alert = (int) get_parameter('id_alert');
|
||||||
|
$id_agente = ($id_agente !== 0) ? $id_agente : alerts_get_agent_by_alert($id_alert);
|
||||||
|
|
||||||
$result = alerts_agent_module_disable($id_alert, true);
|
$result = alerts_agent_module_disable($id_alert, true);
|
||||||
|
|
||||||
|
if ($id_agente) {
|
||||||
|
db_process_sql(
|
||||||
|
'UPDATE tagente
|
||||||
|
SET update_alert_count = 1
|
||||||
|
WHERE id_agente = '.$id_agente
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if ($result) {
|
if ($result) {
|
||||||
db_pandora_audit(
|
db_pandora_audit(
|
||||||
AUDIT_LOG_ALERT_MANAGEMENT,
|
AUDIT_LOG_ALERT_MANAGEMENT,
|
||||||
|
|
|
@ -2828,6 +2828,25 @@ function alerts_get_agent_modules(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the id_agent of the alert
|
||||||
|
*
|
||||||
|
* @param integer $id_agent_module
|
||||||
|
* @return integer id_agent
|
||||||
|
*/
|
||||||
|
function alerts_get_agent_by_alert($id_agent_module)
|
||||||
|
{
|
||||||
|
$sql = sprintf(
|
||||||
|
'SELECT id_agente FROM talert_template_modules atm INNER JOIN tagente_modulo am ON am.id_agente_modulo = atm.id_agent_module WHERE atm.id = %d
|
||||||
|
',
|
||||||
|
$id_agent_module
|
||||||
|
);
|
||||||
|
$id_agente = db_get_row_sql($sql)['id_agente'];
|
||||||
|
|
||||||
|
return $id_agente;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function alerts_get_actions_names($actions, $reduce=false)
|
function alerts_get_actions_names($actions, $reduce=false)
|
||||||
{
|
{
|
||||||
$where = '';
|
$where = '';
|
||||||
|
|
|
@ -401,6 +401,13 @@ sub pandora_server_tasks ($) {
|
||||||
|
|
||||||
# Update forced alerts
|
# Update forced alerts
|
||||||
pandora_exec_forced_alerts ($pa_config, $dbh);
|
pandora_exec_forced_alerts ($pa_config, $dbh);
|
||||||
|
|
||||||
|
my @agents = get_db_rows ($dbh, 'SELECT id_agente, update_alert_count FROM tagente WHERE update_alert_count=1');
|
||||||
|
foreach my $agent (@agents) {
|
||||||
|
if ($agent->{'update_alert_count'} == 1) {
|
||||||
|
pandora_update_agent_alert_count ($pa_config, $dbh, $agent->{'id_agente'});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# TASKS EXECUTED EVERY 30 SECONDS (Mid latency tasks)
|
# TASKS EXECUTED EVERY 30 SECONDS (Mid latency tasks)
|
||||||
|
@ -408,7 +415,7 @@ sub pandora_server_tasks ($) {
|
||||||
if (($counter % 30) == 0) {
|
if (($counter % 30) == 0) {
|
||||||
|
|
||||||
# Update module status and fired alert counts
|
# Update module status and fired alert counts
|
||||||
my @agents = get_db_rows ($dbh, 'SELECT id_agente, nombre, update_module_count, update_alert_count, update_secondary_groups FROM tagente WHERE (update_module_count=1 OR update_alert_count=1 OR update_secondary_groups=1)');
|
my @agents = get_db_rows ($dbh, 'SELECT id_agente, nombre, update_module_count, update_secondary_groups FROM tagente WHERE (update_module_count=1 OR update_secondary_groups=1)');
|
||||||
foreach my $agent (@agents) {
|
foreach my $agent (@agents) {
|
||||||
logger ($pa_config, "Updating module status and fired alert counts for agent " . $agent->{'nombre'}, 10);
|
logger ($pa_config, "Updating module status and fired alert counts for agent " . $agent->{'nombre'}, 10);
|
||||||
|
|
||||||
|
@ -416,10 +423,6 @@ sub pandora_server_tasks ($) {
|
||||||
pandora_update_agent_module_count ($pa_config, $dbh, $agent->{'id_agente'});
|
pandora_update_agent_module_count ($pa_config, $dbh, $agent->{'id_agente'});
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($agent->{'update_alert_count'} == 1) {
|
|
||||||
pandora_update_agent_alert_count ($pa_config, $dbh, $agent->{'id_agente'});
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($agent->{'update_secondary_groups'} == 1) {
|
if ($agent->{'update_secondary_groups'} == 1) {
|
||||||
pandora_update_secondary_groups_cache ($pa_config, $dbh, $agent->{'id_agente'});
|
pandora_update_secondary_groups_cache ($pa_config, $dbh, $agent->{'id_agente'});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue