|
Hi, I'm using File::Tail to monitor a lot (between two and three dozen) of files. I'm setting them up like so:
foreach (@logfiles) {
push(
@files,
File::Tail->new(
name => "$_",
debug => $DEBUG,
ignore_nonexistant => 1,
tail => 1,
)
);
}
Then I come back and do a File::Tail::Select, per the documentation.
This appears to work well enough, except that not all of the files are getting monitored. I haven't chased down exactly where it quits adding files yet; is there a known maximum file count? |