I have a log file that is constantly growing, how can I watch and parse it via a ruby script. The script will parse each new line as it is written to the file and output something to the screen when the new line contains the string 'ERROR'

link|improve this question
feedback

4 Answers

def watch_for(file, pattern)
  f = File.open(file,"r")
  f.seek(0,IO::SEEK_END)
  while true do
    select([f])
    line = f.gets
    puts "Found it! #{line}" if line=~pattern
  end
end

watch_for("g.txt",/ERROR/)

Thanks for the ezpz's idea, using the select method you get get what you want. The select method is listening the IO's stream, read the bytes what comes 'late'.

link|improve this answer
Note: select always returns immediately when used on a file stream: You can always read EOF from that file stream, so your ruby process ends up spinning while it waits for the file to update. Different operating systems tend to offer different tools for waiting on files, Linux has inotify and OS X has fsevents - there are convenient ruby gems that wrap them, too. – antifuchs May 18 at 6:22
feedback

If you're on linux...

tail -f log/development.log | grep "ERROR"

Unless you really wanted it to be a ruby script for some reason. :)

link|improve this answer
Wrapping this in a script gives you the ability to react to an error in a more meaningful way than by noting that it occurred. grepping is good when you want to post-process, but it is rather limited in its ability to invoke dynamic behavior. – ezpz Aug 18 '09 at 14:09
"...output something to the screen when the new line contains the string 'ERROR'" is not dynamic behavior :) – cakeforcerberus Aug 18 '09 at 14:18
1  
This works best for me. Meta-programming around the error log seems like effort better spent elsewhere. – MattC Aug 18 '09 at 14:21
thanks ezpz this is useful – rado Oct 28 '09 at 18:14
feedback

You can use Kernel#select in the following way:

def watch_for(file,pattern)
   f = File.open(file,"r")

   # Since this file exists and is growing, seek to the end of the most recent entry
   f.seek(0,IO:SEEK_END)

   while true
      select([f])
      puts "Found it!" if f.gets =~ pattern
   end
end

Then call it like:

watch_for("some_file", /ERROR/)

I've elided all error checking and such - you will want to have that and probably some mechanism to break out of the loop. But the basic idea is there.

link|improve this answer
yeah I have something similar and it works but it doesn't seems to work when the file is being written to. And calling watch_for will then scan the file from the start finding errors it already found, during the previous pass – KingInk Aug 18 '09 at 13:38
You can seek to the end of the file. just add f.seek(0,IO:SEEK_END). I'll update my post to reflect this – ezpz Aug 18 '09 at 14:01
feedback

check out file-tail gem

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.