From d1e5224ba36f2760bbf64aeebb127a19a8a6d17f Mon Sep 17 00:00:00 2001 From: Eric Fontana Date: Tue, 20 Jan 2015 09:57:28 -0500 Subject: [PATCH] Added missing logSource to the docs. --- TimberWinR/mdocs/Logs.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TimberWinR/mdocs/Logs.md b/TimberWinR/mdocs/Logs.md index 4bd7490..e66f34e 100644 --- a/TimberWinR/mdocs/Logs.md +++ b/TimberWinR/mdocs/Logs.md @@ -8,6 +8,7 @@ The following parameters are allowed when configuring WindowsEvents. | Parameter | Type | Description | Details | Default | | :---------------- |:---------------| :----------------------------------------------------------------------- | :--------------------------- | :-- | | *location* | string |Location of file(s) to monitor | Path to text file(s) including wildcards. | | +| *logSource* | string |Source name | Used for conditions | | | *recurse* | integer |Max subdirectory recursion level. | 0 disables subdirectory recursion; -1 enables unlimited recursion. | 0 | | *splitLongLines* | boolean |Behavior when event messages or event category names cannot be resolved. |When a text line is longer than 128K characters, the format truncates the line and either discards the remaining of the line (when this parameter is set to "false"), or processes the remainder of the line as a new line (when this parameter is set to "true").| false | | *iCodepage* | integer |Codepage of the text file. | 0 is the system codepage, -1 is UNICODE. | 0 | @@ -21,6 +22,7 @@ Example Input: Monitors all files (recursively) located at C:\Logs1\ matching *. "Inputs": { "Logs": [ { + "logSource": "log files", "location": "C:\\Logs1\\*.log", "recurse": -1 }