Skip to content

Analogy-LogViewer/Analogy.LogViewer.RegexParser

Repository files navigation

Analogy.LogViewer.RegexParser

.NET Core Desktop Issues GitHub closed issues License Nuget

Regular Expression Parser for simple text files

In this parser you need to define your custom regex to match you log format in the applcation settings:

Serilog Settings

with the correct regular expression you can parse you custom format. For example: in the screenshot this example log can be parsed:

$2020-04-24 13:18:23,207|1|INFO|logsource|My Manager App Starting...
$2020-04-24 13:28:24,380|1|WARN|files|file not found
$2020-04-24 13:48:27,193|2|INFO|AppBase|Loading done

Serilog Settings

the available tags to use for parsing are:

public enum AnalogyLogMessagePropertyName
{
 Date,
 ID,
 Text,
 Category,
 Source,
 Module,
 MethodName,
 FileName,
 User,
 LineNumber,
 ProcessId,
 Thread,
 Level,
 Class,
}

which corresponding to AnalogyLogMessage fields

Issues

  • Windows 10 Blocks Zip files by default. Make sure to unblocked before unzipping the files.

How To Use

  1. Download the latest Analogy Log Viewer from the release section (.net framework or .net Core version).
  2. Download (or Compile) this project and put the compiled DLL in the same folder as the Analogy Log Viewer.