Adding stdout output

This commit is contained in:
Jonathan Preddy
2014-08-04 14:07:16 -04:00
parent 7ec68f4e52
commit 94ca9b40a2
8 changed files with 154 additions and 3 deletions

View File

@@ -59,6 +59,9 @@
<Content Include="default.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="loopback.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>

View File

@@ -0,0 +1,29 @@
{
"TimberWinR": {
"Inputs": {
"Stdin": [
{
}
]
},
"Outputs": {
"Stdout": [
{
}
]
},
"Filters": [
{
"grok": {
"match": [
"message",
""
],
"add_field": [
"ComputerName", "test"
]
}
}
]
}
}