vote up 5 vote down star
1

My company is searching for an Open Source product that could do log management and analysis (edit: we'd use the product to handle custom log files - the ones generated by our applications, not standard logs)

We've had demos for some proprietary products (for example, Sensage or HP's Transaction Vision), but we'd like to find an Open Source alternative.

Requirements are:

  • The product should be able to collect logs from various machines (Solaris, Windows, etc.)
  • It should handle substantially big logfiles (even 500Mb per logfile)
  • It should handle different logfiles per day (for example, 24 logfiles a day with different names)
  • It should be able to store only the relevant informations from each logfile (for example, some fields, in a configurable way)
  • It should be able to handle multi-line records in logfiles (for example, xml)
  • Preferred method of storage for log records is an Oracle or MySQL database (not exotic indexing systems) (edit: after seeing Splunk in action, other forms of data storage are acceptable too)
  • It should handle quasi-realtime parsing and analysis of log files (10 or 20 minutes of delay is acceptable)

I know it seems too much and too specific for an Open Source system, but maybe Open Source could surprise us again.

flag

78% accept rate

6 Answers

vote up 2 vote down check

Try looking at Splunk. That's what they did initially before they became the IT Search thingy.

http://www.splunk.com/

link|flag
as I said before, great product, but it's not opensource. – friol Jul 1 at 19:24
I did not know about this product. I do now, thanks. – Troggy Jul 2 at 17:20
At the end, we'll try to test Splunk for a while and see if it's worth buying its license. – friol Jul 3 at 21:01
vote up 0 vote down

If it where me, I'd recommend a scripting language of some sort. If you're comfortable with perl I'm sure you could write your own script to do it. It runs on windows, linux, mac, *BSD. Totally open source and many projects use it to do the same thing you're doing. Really well documented, HUGE repository of reusable code. The only down side is the company would have to write it or have it written which would take time and/or additional money to do but it would do exactly what you want it to do. Just my 2 cents.

EDIT: So I'm looking around on sourceforge for a solution to your problem and I found this. http://sourceforge.net/projects/lofimo/

what piqued my interest was the fact that it could execute shell commands on certain events. Is this more what you where looking for?

link|flag
a fast and flexible log parser, a GUI and a backup mechanism with a perl script? I don't want to be the one to do that :) – friol Jul 2 at 19:39
:D fair enough. I hope you find something that works for you though. – mikeyickey Jul 3 at 4:47
vote up 0 vote down

Will this help? http://code.google.com/p/dataparksearch/

link|flag
vote up 0 vote down

To me, this sounds like a combination of tools. For managing system logs, I would recommend syslog-ng from Balabit, combined with the Simple Event Correlator to do log analysis.

Syslog-ng uses the syslog protocol, but enhances the capabilities of the daemon dramatically, handling multiple hosts with ease, splitting the incoming syslog messages into almost any set of categories imaginable. It is also possible to process the incoming logs in a variety of ways, including passing them along to another server.

Simple Event Correlator (SEC) is an extremely powerful log analysis tool which includes time oriented analysis. For example, it can raise the alarm when a particluar log message is seen right after another specific entry. SEC can raise the alarm when a particular log entry is not seen, or a particular log entry is seen too much. It can do a wide variety of things, including shell commands, alarms, and more.

link|flag
We already have a tool to handle alarms (HP Openview). Am I wrong or syslog-ng would handle only syslog events? – friol Jun 30 at 18:50
vote up 1 vote down

Look into www.ossec.net. I don't know if it has all of your requirements; nonetheless, it's pretty powerful.

OSSEC is an Open Source Host-based Intrusion Detection System. It performs log analysis, file integrity checking, policy monitoring, rootkit detection, real-time alerting and active response.

It runs on most operating systems, including Linux, MacOS, Solaris, HP-UX, AIX and Windows. A list with all supported platforms is available here.

link|flag
I've given a quick glance, but: does it support only some specific formats of logfiles? We're searching for a tool that could handle our applications' log files (that are custom). – friol Jun 30 at 18:32
I don't know if you are going to be able to find something free that processes multiple 'custom' log files. It would be much easier have custom applications write in syslog format so that any log reader analysis program can pick it up and display it. – Mike Jr Jul 3 at 15:16
vote up 0 vote down

I don't think there is anything from open source. What you're asking for is an integrated solution, open source projects aren't usually interested in this, they're mostly creating general purpose frameworks and then it's up to you to put up a solution on top of this. Your description fits perfectly to what we already have built as a commercial not expensive product - logFaces. There are other solutions as well, depending on how much you're willing to spend for integrating it with your system. I'm biased or course, but most of them are complex, non-trivial to setup and will require additional costs for getting it go in real life.

link|flag
Seems a good product, but, if I read well, all our applications would have to be modified, in order to feed logs to logFaces. That's not what we are searching, it would be too much of an overhaul. – friol Jun 25 at 21:06
I see.. Then perhaps you will need something which can crunch your log data and partition it for you offline. There are plenty of products doing just that. Splunk comes to mind as one of them... – Dima Jun 25 at 22:47
..but no open source to my knowledge. In fact I'd be interested too. – Dima Jun 25 at 22:48
Splunk comes 99% closer to what we're searching. Only downside: it's not opensource. – friol Jun 30 at 18:33

Your Answer

Get an OpenID
or

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