in reply to Re^2: logfile parsing
in thread logfile parsing

Ok...I think I've figured out how to get my process ID:
if($line =~/Id:\s*(\d+)/){ $processid = $1; }
Does that make sense?