Gollum is a n:m multiplexer that gathers messages from different sources and broadcasts them to a set of destinations.
There are a few basic terms used throughout Gollum:
- "Consumers" read data from other services
- "Producers" write data to other services
- "Streams" route data between consumers and producers
- A "message" is a set of data passed between consumers and producers
- "Formatters" can transform the content of messages
- "Filters" can block/pass messages based on their content
Writing a custom plugin does not require you to change any additional code besides your new plugin file.
Consoleread from stdin.Fileread from a file (like tail).Httpread http requests.Kafkaread from a Kafka topic.LoopBackProcess routed (e.g. dropped) messages.Proxyuse in combination with a proxy producer to enable two-way communication.Socketread from a socket (gollum specfic protocol).Syslogdread from a socket (syslogd protocol).
Consolewrite to stdin or stdout.ElasticSearchwrite to elasticsearch via http/bulk.Filewrite to a file. Supports log rotation and compression.HttpReqHTTP request forwarder.InfluxDBsend data to an InfluxDB server.Kafkawrite to a Kafka topic.Nulllike /dev/null.Proxytwo-way communication proxy for simple protocols.Scribesend messages to a Facebook scribe server.Socketsend messages to a socket (gollum specfic protocol).Websocketsend messages to a websocket.
Broadcastsend to all producers in a stream.Randomsend to a random producer in a stream.RoundRobinswitch the producer after each send in a round robin fashion.Routeconvert streams to one or multiple others
Base64Encodeencode messages to base64.Base64Decodedecode messages from base64.CollectdToInfluxconvert CollectD data to InfluxDB compatible values.Envelopeadd a prefix and/or postfix string to a message.Forwardwrite the message without modifying it.Hostnameprepend the current machine's hostname to a message.Identifierhash the message to generate a (mostly) unique id.JSONwrite the message as a JSON object. Messages can be parsed to generate fields.Runlengthprepend the length of the message.Sequenceprepend the sequence number of the message.StreamNameprepend the name of a stream to the payload.StreamRevertroute a message to the previous stream (e.g. after it has been routed).StreamRouteroute a message to another stream by reading a prefix.Timestampprepend a timestamp to the message.
Alllets all message pass.Jsonblocks or lets json messages pass based on their content.Noneblocks all messages.RegExpblocks or lets messages pass based on a regular expression.Streamblocks or lets messages pass based on their stream name.
Installation from source requires the installation of the Go toolchain.
Gollum has Godeps support but this is considered optional.
$ go get .
$ go build
$ gollum --help
You can use the supplied make file to trigger cross platform builds.
Make will produce ready to deploy .tar.gz files with the corresponding platform builds.
This does require a cross platform golang build.
Valid make targets (besides all and clean) are:
- freebsd
- linux
- mac
- pi
- win
To test gollum you can make a local profiler run with a predefined configuration:
$ gollum -c config/profile.conf -ps -ll 3
By default this test profiles the theoretic maximum throughput of 256 Byte messages.
You can enable different producers to test the write performance of these producers, too.
Configuration files are written in the YAML format and have to be loaded via command line switch. Each plugin has a different set of configuration options which are currently described in the plugin itself, i.e. you can find examples in the GoDocs.
Use a given configuration file.
Print this help message.
Set the loglevel [0-3]. Higher levels produce more messages.
Port to use for metric queries. Set 0 to disable.
Number of CPUs to use. Set 0 for all CPUs.
Write the process id into a given file.
Write CPU profiler results to a given file.
Write heap profile results to a given file.
Write msg/sec measurements to log.
Test a given configuration file and exit.
Print version information and quit.
The easiest way to install go is by using homebrew:
brew install go
If you want to do cross platform builds you need to specify an additional option (Go 1.5 does not require this anymore):
brew install go --with-cc-all
Download Go from the golang website and unzip it to e.g. /usr/local/go.
You have to set the GOROOT environment variable to the folder you chose:
export GOROOT=/usr/local/go
If you do not already have a GOPATH set up you need to create one.
The location is free of choice, we prefer to put it into each users home folder:
mkdir -p ~/go
export GOPATH=$(HOME)/go
You can download gollum via go get github.com/trivago/gollum or clone it directly into your GOPATH.
If you choose this way you need to download your dependencies directly from that folder
mkdir -p $(GOPATH)/src/github.com/trivago
cd $(GOPATH)/src/github.com/trivago
git clone https://github.com/trivago/gollum.git
cd gollum
go get -u .
Building gollum is as easy as go build.
If you want to do cross platform builds use make all or specifiy one of the following platforms instead of "all":
- freebsd
- linux
- mac
- pi
- win
Please not that building for windows will give you errors, which can be solved by removing the lines reported.
If you want to use native plugins (contrib/native) you will have to enable the import in the file contrib/loader.go.
Doing so will disable the possibility to do cross-platform builds for most users.
The repository contains a Dockerfile which enables you to build and run gollum inside a Docker container.
$ docker build -t trivago/gollum .
$ docker run -it --rm trivago/gollum -c config/profile.conf -ps -ll 3
To use your own configuration you could run:
$ docker run -it --rm -v /path/to/config.conf:/etc/gollum/gollum.conf:ro trivago/gollum -c /etc/gollum/gollum.conf
If you got any errors during build regarding external dependencies (i.e. the error message points to another repository than github.com/trivago) you can restore the last dependency snapshot using godep.
Install godep via go get github.com/tools/godep and restore the dependency via godep restore when inside the gollum base folder.
This project is released under the terms of the Apache 2.0 license.

