Search found 6 matches

by alexk195
Thu Dec 13, 2012 10:27 am
Forum: Submitting a feature request
Topic: Splitting Data receving and decoding from LogMx Manager
Replies: 1
Views: 15294

Splitting Data receving and decoding from LogMx Manager

My suggestion is to split the functionality of LogMx' FileManager into two parts: The data retrival part and data decoding part. For example I've written the file manager which can decode zip/gzip local files (see this post: http://www.logmx.com/forum/viewtopic.php?f=2&t=248&p=548&hilit=gzip#p548). ...
by alexk195
Fri Jan 27, 2012 12:21 pm
Forum: Writing a Manager
Topic: PROBLEM with Selfmade Manager
Replies: 3
Views: 20334

Re: PROBLEM with Selfmade Manager

Hello Xavier. Niti and me finally got the custom manager running. As Niti told in her post, we first faced some problems deriving from LogFileManager. Especially using drag&drop. We tried with Protocol "file" and also with custom Protocol name like "gzfile". We then tried to derive from LocalFileMan...
by alexk195
Fri Aug 12, 2011 10:00 am
Forum: Writing a Parser
Topic: Public parser repository
Replies: 11
Views: 44734

Re: Public parser repository

Here my another custom Parser for parsing linux kernel logs, dmesg output etc. It searches for keywords like "error","panic", "warning" for appropriate level. Still needs proper time stamp parsing but works in general. @admin/developer: Some feature to disable columns in custom parser would be nice!...
by alexk195
Tue May 03, 2011 9:09 am
Forum: Submitting a feature request
Topic: Bugfix / Feature
Replies: 1
Views: 6356

Bugfix / Feature

If using Simple Parser for own Parser definition, one can add "Text", "Field" and "New Line" to define custom format. I have noticed that i strictly need an "New Line" at the end of definition. Unfortunatelly LogMx doesn't persist this last "New Line". I have to define it every time i start LogMx. A...
by alexk195
Tue May 03, 2011 7:38 am
Forum: Submitting a feature request
Topic: More filtering options
Replies: 2
Views: 7647

More filtering options

There are already some filtering options: equal, not equal, starts with, like, not like...
Please extend this by:

not starts with
ends with
not ends with

This helps a lot if you want to filter out specific messages.
by alexk195
Tue May 03, 2011 7:31 am
Forum: Writing a Parser
Topic: Public parser repository
Replies: 11
Views: 44734

Re: Public parser repository

Here is my simple parser to parse fixed length log files genereted by CAN Analyzer CanKing: package sample.parser; import java.text.DecimalFormatSymbols; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List; import java.te...