Compare commits
1 Commits
release/0.
...
test_fixtu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
736d0bd68a |
@@ -605,7 +605,7 @@ namespace TimberWinR.Parser
|
|||||||
Index = "logstash";
|
Index = "logstash";
|
||||||
Host = new string[] { "localhost" };
|
Host = new string[] { "localhost" };
|
||||||
Timeout = 10000;
|
Timeout = 10000;
|
||||||
BatchCount = 50;
|
BatchCount = 200;
|
||||||
MaxBatchCount = BatchCount*10;
|
MaxBatchCount = BatchCount*10;
|
||||||
NumThreads = 1;
|
NumThreads = 1;
|
||||||
Interval = 5000;
|
Interval = 5000;
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ The following parameters are allowed when configuring the Redis output.
|
|||||||
| Parameter | Type | Description | Details | Default |
|
| Parameter | Type | Description | Details | Default |
|
||||||
| :-------------|:---------|:------------------------------------------------------------| :--------------------------- | :-- |
|
| :-------------|:---------|:------------------------------------------------------------| :--------------------------- | :-- |
|
||||||
| *threads* | string | Location of log files(s) to monitor | Number of worker theads to send messages | 1 |
|
| *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 |
|
| *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 |
|
| *interval* | integer | Interval in milliseconds to sleep during batch sends | Interval | 5000 |
|
||||||
| *index* | string | The name of the redis list | logstash index name | logstash |
|
| *index* | string | The name of the redis list | logstash index name | logstash |
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
$packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in messages
|
$packageName = 'TimberWinR-${version}' # arbitrary name for the package, used in messages
|
||||||
$installerType = 'msi' #only one of these: exe, msi, msu
|
$installerType = 'msi' #only one of these: exe, msi, msu
|
||||||
$url = 'http://www.ericfontana.com/TimberWinR/TimberWinR-${version}.0.msi' # download url
|
$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
|
$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
|
UnInstall-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" -validExitCodes $validExitCodes
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user