mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Extra options for grep_log plugin
+lines -lines around the matched one
This commit is contained in:
parent
19fad8acc6
commit
d7d44d84e8
@ -204,24 +204,17 @@ sub parse_log (;$$) {
|
||||
# Push upper lines
|
||||
for (my $i = ($curr_line-$up_lines); $i<=$curr_line; $i++){
|
||||
if (defined ($lines[$i])) {
|
||||
print "metiendo (up): [" . $lines[$i] . "] $i\n";
|
||||
push (@data, $lines[$i]);
|
||||
}
|
||||
else{
|
||||
print "up: linea no definida $i\n";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
if (defined($bot_lines)){
|
||||
# Push bottom lines
|
||||
for (my $i = ($curr_line+$flag); $i<=($curr_line+$bot_lines); $i++){
|
||||
if (defined ($lines[$i])) {
|
||||
print "metiendo(bot): [" . $lines[$i] . "] $i\n";
|
||||
push (@data, $lines[$i]);
|
||||
}
|
||||
else{
|
||||
print "up: linea no definida $i\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user