0758893d904621eb2ce1b5a8fda3888bb6fd49f2
TimberWinR
A Native Windows to Redis Logstash Agent which runs as a service.
Why have TimberWinR?
TimberWinR is a native .NET implementation utilizing Microsoft's LogParser. This means no JVM/JRuby is required, and LogParser does all the heavy lifting. TimberWinR collects the data from LogParser and ships it to Logstash via Redis.
Supported Input Formats
- WindowsEvents
- IIS Logs (W3C)
- LogFiles (Tailing of files)
- TCP Port
Supported Output Formats
- Redis
Sample Configuration
TimberWinR reads a JSON configuration file, an example file is shown here:
{
"TimberWinR": {
"Inputs": {
"WindowsEvents": [
{
"source": "System,Application",
"binaryFormat": "PRINT",
"resolveSIDS": true
}
]
},
"Outputs": {
"Redis": [
{
"host": [
"server1.host.com"
]
}
]
}
}
This configuration collects Events from the Windows Event Logs (System, Application) and forwards them to Redis.
Description
A First-class Native Windows to Redis/Elasticsearch Logstash Agent utilizing Microsoft's LogParser
Languages
C#
100%