Files
TimberWinR/TimberWinR.ServiceHost/default.json
Philipp Sumi 7583a586fd CHG TCP listeners now accepts continous streams with multiline json snippets.
FIX   Default configuration template had Outputs on wrong (root) level, thus ignoring them.
2014-10-30 18:50:27 +01:00

43 lines
1.1 KiB
JSON

{
"TimberWinR": {
"Inputs": {
"WindowsEvents": [
{
"source": "Application,System",
"binaryFormat": "PRINT",
"resolveSIDS": true
}
],
"Tcp": [
{
"_comment": "Output from NLog",
"port": 5140
}
]
},
"Filters": [
{
"grok": {
"condition": "[EventTypeName] == \"Information Event\"",
"match": [
"Text",
""
],
"drop": "true"
}
}
],
"Outputs": {
"Redis": [
{
"_comment": "Change the host to your Redis instance",
"port": 6379,
"host": [
"logaggregator.vistaprint.svc"
]
}
]
}
}
}