From 4b255bfd27b957323a332f373fcc7b4d1044e8aa Mon Sep 17 00:00:00 2001 From: Eric Fontana Date: Tue, 20 Jan 2015 06:59:05 -0500 Subject: [PATCH] More doc updates --- README.md | 4 ++++ TimberWinR/mdocs/Codec.md | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9d97a14..55cf6f3 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ The current supported Input format sources are: 6. [W3C](https://github.com/Cimpress-MCP/TimberWinR/blob/master/TimberWinR/mdocs/W3CInput.md)(Internet Information Services W3C Advanced/Custom Format) 7. [Udp](https://github.com/Cimpress-MCP/TimberWinR/blob/master/TimberWinR/mdocs/UdpInput.md) (listens for UDP on port for JSON messages) +## Codecs +The current list of supported filters are: + 1. [Multiline](https://github.com/Cimpress-MCP/TimberWinR/blob/master/TimberWinR/mdocs/Codec.md) + ## Filters The current list of supported filters are: 1. [Grok](https://github.com/Cimpress-MCP/TimberWinR/blob/master/TimberWinR/mdocs/GrokFilter.md) diff --git a/TimberWinR/mdocs/Codec.md b/TimberWinR/mdocs/Codec.md index 064215a..f9be6f4 100644 --- a/TimberWinR/mdocs/Codec.md +++ b/TimberWinR/mdocs/Codec.md @@ -21,9 +21,10 @@ Example Input: Mutliline input log file "location": "C:\\Logs1\\multiline.log", "recurse": -1, "codec": { - "type": "multiline", - "pattern": "(^.+Exception: .+)|(^\\s+at .+)|(^\\s+... \\d+ more)|(^\\s*Caused by:.+)", - "what": "previous" + "negate": false, + "type": "multiline", + "pattern": "(^.+Exception: .+)|(^\\s+at .+)|(^\\s+... \\d+ more)|(^\\s*Caused by:.+)", + "what": "previous" } } }