Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: guidance with a realtime log reader

by rodion (Chaplain)
on Aug 29, 2013 at 21:42 UTC ( [id://1051514]=note: print w/replies, xml ) Need Help??


in reply to guidance with a realtime log reader

Don't forget that you will need to provide for stopping and restarting your script at the the time when the log file turns over to a new copy. (On the log file side, the change is often done using "rotate".) Without that, your tail command might be listening to a log that has been renamed from "logfile" to "logfile.0". You'll be listening it logfile.0, the inode that you opened, which is no longer being written to, and nothing is listening to the new day's copy of "logfile".

Just a caution.

  • Comment on Re: guidance with a realtime log reader

Replies are listed 'Best First'.
Re^2: guidance with a realtime log reader
by socalheel (Initiate) on Aug 30, 2013 at 16:36 UTC
    Thank you so much for responding ... I'll try to work on it this weekend to convert from bash to perl. And good call with the log rotating. :) If anyone is interested, here is my bash script:
    #!/bin/bash string="connection_input: conn=11" tail -n 0 -F /var/log/ldap.log | \ while read LINE do echo "$LINE" | grep -q $string if [ $? = 0 ] then echo -e "$string found on $HOSTNAME" | mail -s "LDAP authentication on + $(hostname)" teamsupport@yourdomain.com fi done
    But I have to start it with a no hangup script
    #!/bin/bash nohup ./ldap_log_reader.sh 0<&- &>/dev/null &

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1051514]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 12:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found