Eric Fontana 71b2dee43c More docs
2014-07-29 13:48:34 -04:00
2014-07-15 09:22:34 -04:00
2014-07-29 13:48:34 -04:00
2014-07-22 10:26:04 -04:00
2014-07-29 13:31:14 -04:00
2014-07-29 09:35:35 -04:00
2014-07-15 09:22:34 -04:00
2014-07-15 09:22:34 -04:00
2014-07-29 13:48:34 -04:00
2014-07-21 09:29:56 -04:00
2014-07-29 13:36:27 -04:00
2014-07-29 13:48:34 -04:00
md
2014-07-29 13:34:52 -04:00

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
Readme 32 MiB
Languages
C# 100%