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'
|
feedback
|
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'. | |||
feedback
|
|
If you're on linux...
Unless you really wanted it to be a ruby script for some reason. :) | |||||||||||
feedback
|
|
You can use Kernel#select in the following way:
Then call it like:
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. | |||||
feedback
|