next;
}
+ # Some log line may be written by applications
+ next if ($line =~ / LOG: /);
+
if (exists $cur_temp_info{$cur_pid}{query}) {
$cur_temp_info{$cur_pid}{query} .= "\n" . $t_query;
} elsif (exists $cur_lock_info{$cur_pid}{query}) {
# Collect orphaned lines of multiline queries
} elsif ($cur_pid && ($line !~ $orphan_syslog_line)) {
+ # Some log line may be written by applications
+ next if ($line =~ / LOG: /);
+
if (exists $cur_temp_info{$cur_pid}{query}) {
$cur_temp_info{$cur_pid}{query} .= "\n" . $line;
} elsif (exists $cur_lock_info{$cur_pid}{query}) {
$cur_info{$cur_pid}{parameters} .= " $line";
next;
}
+
+ # Some log line may be written by applications
+ next if ($line =~ / LOG: /);
+
if (exists $cur_temp_info{$cur_pid}{query}) {
$cur_temp_info{$cur_pid}{query} .= "\n" . $line;
} elsif (exists $cur_lock_info{$cur_pid}{query}) {