Is anyone aware of any linux utility that can monitor logs in realtime and trigger events based on specific log content? Thanks.
|
|
|||
|
|
|
Log SurferFrom: http://www.crypt.gen.nz/logsurfer/#download
|
||
|
|
|
|
There's a package called sec or Simple Events Coordinator that I use to detect when an unregistered computer gets a DHCPACK. |
||
|
|
|
|
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? |
||||||
|
|
|
you could pipe your logfile through awk and call any desired action on specified patterns. |
||
|
|
|
|
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. |
||
|
|
|
|
I recently found Logprism. It can resolve IP, filter out certain hits and "syntax-highlight" an apache log file:
I use it combined with tail- f to have a "ticker" kind of view of the server:
|
||
|
|

