Merge branch 'ent-7559-11881-limitacion-en-macro-_snmp_fx_' into 'develop'
Ent 7559 11881 limitacion en macro snmp fx See merge request artica/pandorafms!4203
This commit is contained in:
commit
be8318dc9b
|
@ -3961,9 +3961,7 @@ sub pandora_evaluate_snmp_alerts ($$$$$$$$$) {
|
|||
for ($count = 1; defined ($custom_values[$count-1]); $count++) {
|
||||
my $macro_name = '_snmp_f' . $count . '_';
|
||||
my $order_field = $alert->{'order_'.$count};
|
||||
#~ my $order_field = $order_field - 1;
|
||||
|
||||
if ($custom_values[($order_field-1)] =~ m/= \S+: (.*)/) {
|
||||
if ($custom_values[$count] =~ m/= \S+: (.*)/) {
|
||||
my $value = $1;
|
||||
|
||||
# Strip leading and trailing double quotes
|
||||
|
@ -3971,6 +3969,9 @@ sub pandora_evaluate_snmp_alerts ($$$$$$$$$) {
|
|||
$value =~ s/"$//;
|
||||
|
||||
$macros{$macro_name} = $value;
|
||||
} else {
|
||||
# Empty variable.
|
||||
$macros{$macro_name} = '';
|
||||
}
|
||||
}
|
||||
$count--;
|
||||
|
|
Loading…
Reference in New Issue