Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #18847
| Newsgroups | comp.lang.java.programmer |
|---|---|
| Date | 2012-09-19 04:00 -0700 |
| References | <bd933ace-5641-4711-9105-4e949a602b87@c1g2000yqe.googlegroups.com> |
| Message-ID | <c2b6062c-e336-4087-8e50-d3ab944b5cbb@googlegroups.com> (permalink) |
| Subject | Re: analysis of java application logs |
| From | Krzysztof <krzysztof.otrebski@gmail.com> |
W dniu poniedziałek, 23 maja 2011 09:50:54 UTC+2 użytkownik Ulrich Scholz napisał: > Hi, > > I'm looking for an approach to the problem of analyzing application > log files. > > I need to analyse Java log files from applications (i.e., not logs of > web servers). These logs contain Java exceptions, thread dumps, and > free-form log4j messages issued by log statements inserted by > programmers during development. Right now, these man-made log entries > do not have any specific format. > > What I'm looking for is a tool and/or strategy that supports in lexing/ > parsing, tagging, and analysing the log entries. Because there is only > little defined syntax and grammar - and because you might not know > what you are looking for - the task requires the quick issuing of > queries against the log data base. Some sort of visualization would be > nice, too. > > Pointers to existing tools and approaches as well as appropriate tools/ > algorithms to develop the required system would be welcome. > > Ulrich I'm using OtrosLogViewer http://code.google.com/p/otroslogviewer with batch processing https://code.google.com/p/otroslogviewer/wiki/BatchProcessing. Following method of your log processing logic is called when log event is parsed. logDataParsed(LogData data, BatchProcessingContext context); Additionally you are notified when processing is started/finished. Krzysztof.
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
Re: analysis of java application logs Krzysztof <krzysztof.otrebski@gmail.com> - 2012-09-19 04:00 -0700
Re: analysis of java application logs Arne Vajhøj <arne@vajhoej.dk> - 2012-09-19 18:21 -0400
Re: analysis of java application logs Lew <lewbloch@gmail.com> - 2012-09-19 20:37 -0700
Re: analysis of java application logs Arne Vajhøj <arne@vajhoej.dk> - 2012-09-23 22:29 -0400
csiph-web