Adding doc for stdout

This commit is contained in:
Jonathan Preddy
2014-08-04 14:22:34 -04:00
parent e8d362b363
commit de1597d0e0
2 changed files with 22 additions and 1 deletions

View File

@@ -34,7 +34,8 @@ represented as a JSON Property or Array.
## Supported Output Formats
1. [Redis](https://github.com/efontana/TimberWinR/blob/master/TimberWinR/mdocs/RedisOutput.md)
1. [Elasticsearch](https://github.com/efontana/TimberWinR/blob/master/TimberWinR/mdocs/ElasticsearchOutput.md)
2. [Elasticsearch](https://github.com/efontana/TimberWinR/blob/master/TimberWinR/mdocs/ElasticsearchOutput.md)
3. [Stdout](https://github.com/efontana/TimberWinR/blob/master/TimberWinR/mdocs/StdoutOutput.md)
## Sample Configuration
TimberWinR reads a JSON configuration file, an example file is shown here:

View File

@@ -0,0 +1,20 @@
# Input: Stdin
The Stdout output will write to the console (Console.WriteLine) and display a json structure of the received message attributes. Useful for quickly viewing and testing the inputs and filters of a setup.
## Parameters
There are no Parameters at this time.
```json
{
"TimberWinR": {
"Inputs": {
"Stdout": [
{
"_comment": "Output to Console"
}
]
}
}
}
```