vote up 3 vote down star

Is anyone aware of any linux utility that can monitor logs in realtime and trigger events based on specific log content? Thanks.

flag

59% accept rate
I'd suggest that this question would possibly do better on serverfault.com, IMHO. – Lou Sep 30 at 22:11

7 Answers

vote up 2 vote down check

Log Surfer

From: http://www.crypt.gen.nz/logsurfer/#download

Logsurfer is a program for monitoring system logs in real-time, and reporting on the occurrence of events. It is similar to the well-known swatch program on which it is based, but offers a number of advanced features which swatch does not support.

link|flag
vote up 1 vote down

There's a package called sec or Simple Events Coordinator that I use to detect when an unregistered computer gets a DHCPACK.

link|flag
vote up 1 vote down

tail -f "path to log file"

Can monitor your logs in real-time, but it won't raise any events.

What do you mean by event triggering? Do you want to run certain commands when a log message appears with a certain content?

link|flag
e.g. send an email when the log prints out "System ready to blow up, please stand by" – Steve B. Feb 26 at 21:51
You can route different log levels to different files in syslog and for instance when you get a critical error "tail -f /var/log/critical | mail <stuff here>" grabs it and sends an email. – frgtn Feb 26 at 22:10
@Steve B. Shouldn't that be "System ready to blow up, RUN AWAY!" ? – Chris Huang-Leaver Oct 1 at 8:23
vote up 1 vote down

you could pipe your logfile through awk and call any desired action on specified patterns.

link|flag
vote up 1 vote down

Check out the logwatch and logcheck packages for Ubunutu. They generally run at a specified interval, (configurable) but may be able to do what you'd like.

link|flag
vote up 1 vote down

http://www.splunk.com/

link|flag
vote up 0 vote down

I recently found Logprism. It can resolve IP, filter out certain hits and "syntax-highlight" an apache log file:

logprism

I use it combined with tail- f to have a "ticker" kind of view of the server:

Real time view of access_log file. Requests made to files ending .ico, .gif and .png are not shown. Adds registry (ARIN, RIPE, APNIC or LACNIC) at the end of unresovable IPs.

$ tail -f access_log | ./logprism.pl -dns -sessions -local-url '^http://www.example.com/' -exclude '\.(?:ico|gif|png)$' -registry
link|flag

Your Answer

Get an OpenID
or

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