Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

uswitch/syslogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Syslogger

Syslogger is a tool to help forward Rsyslog messages to Apache Kafka.

Apache Kafka is a "high-performance, distributed messaging system" that is well suited for the collation of both business and system event data. Please see Jay Kreps' wonderful "The Log: What every software engineer should know about real-time data's unifying abstraction" for more information.

Syslogger will help you forward syslog messages to Kafka. Messages are forwarded from rsyslog over a TCP connection to syslogger. Rsyslog already has a bunch of stuff to make forwarding messages as reliable as possible, handling back-pressure and writing queued messages to disk etc. For more information please see "Reliable Forwarding of syslog Messages with Rsyslog".

Design

Syslogger tries to be a good Rsyslog citizen by offloading as much responsibility for handling failure to Rsyslog.

Reliability is achieved (as much as possible when using just TCP) by synchronously sending messages to Kafka: we put as much back-pressure onto Rsyslog as possible in the event of there being a problem or delay in forwarding messages to Kafka.

Syslogger starts a TCP listener, by default, on port 1514. It also attempts to connect to ZooKeeper to retrieve the connection details for the Kafka brokers. Metrics are collected using go-metrics.

Building

Syslogger uses ZooKeeper so you'll need both the ZooKeeper library and headers available on your system.

To build on OSX (assuming you install ZooKeeper with Homebrew) you'll need:

$ export CGO_CFLAGS='-I/usr/local/include/zookeeper'
$ export CGO_LDFLAGS='-L/usr/local/lib'

And then...

$ export GOPATH=$(pwd)
$ export GO15VENDOREXPERIMENT=1
$ go install syslogger

Configuring Rsyslog

It's worth reading the Rsyslog documentation to make sure you configure Rsyslog according to your environment. If you just want to see stuff flowing on your development machine the following should suffice:

$ActionQueueType LinkedList
$ActionResumeRetryCount -1
$ActionQueueFileName /tmp/syslog_queue
$ActionQueueMaxFileSize 500M
*.* @@localhost:1234

About

Forwards syslog messages to Kafka

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published