diff --git a/TimberWinR/Parser.cs b/TimberWinR/Parser.cs index 9fd69f1..535d5b0 100644 --- a/TimberWinR/Parser.cs +++ b/TimberWinR/Parser.cs @@ -605,7 +605,7 @@ namespace TimberWinR.Parser Index = "logstash"; Host = new string[] { "localhost" }; Timeout = 10000; - BatchCount = 50; + BatchCount = 200; MaxBatchCount = BatchCount*10; NumThreads = 1; Interval = 5000; diff --git a/TimberWinR/mdocs/RedisOutput.md b/TimberWinR/mdocs/RedisOutput.md index b7251d0..7b868d6 100644 --- a/TimberWinR/mdocs/RedisOutput.md +++ b/TimberWinR/mdocs/RedisOutput.md @@ -8,7 +8,7 @@ The following parameters are allowed when configuring the Redis output. | Parameter | Type | Description | Details | Default | | :-------------|:---------|:------------------------------------------------------------| :--------------------------- | :-- | | *threads* | string | Location of log files(s) to monitor | Number of worker theads to send messages | 1 | -| *batch_count* | integer | Sent as a single message | Number of messages to aggregate | 10 | +| *batch_count* | integer | Sent as a single message | Number of messages to aggregate | 200 | | *max_batch_count* | integer | Dynamically adjusted count maximum | Increases over time | batch_count*10 | | *interval* | integer | Interval in milliseconds to sleep during batch sends | Interval | 5000 | | *index* | string | The name of the redis list | logstash index name | logstash | diff --git a/chocolateyUninstall.ps1.template b/chocolateyUninstall.ps1.template index d776fd7..3e5d46a 100644 --- a/chocolateyUninstall.ps1.template +++ b/chocolateyUninstall.ps1.template @@ -1,7 +1,7 @@ $packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in messages $installerType = 'msi' #only one of these: exe, msi, msu $url = 'http://www.ericfontana.com/TimberWinR/TimberWinR-${version}.0.msi' # download url -$silentArgs = '{D066A694-B9F7-4B35-BB7D-D34CB88CA89F} /quiet' +$silentArgs = '{593EF0C4-54E0-40D5-A3E3-922CD1C25B9E} /quiet' $validExitCodes = @(0) #please insert other valid exit codes here, exit codes for ms http://msdn.microsoft.com/en-us/library/aa368542(VS.85).aspx UnInstall-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes