Sign inSign up

visity/rsyslog-elasticsearch

By visity

Updated about 11 years ago

Moved from jverhoeven

Image
0

2.7K

visity/rsyslog-elasticsearch repository overview

Docker log driver syslog forward to Elasticsearch

Introduction

This docker simply accepts syslog messages via TCP or UDP, stores them locally in /var/log/syslog (which can be mapped on the host for persistence) and forwards them to an elastic search endpoint.

Note that this docker does not support linking since the elasticsearch machine is likely to run on another machine.

Configuration

Environment varDescription
ESLOG_HOSTThe endpoint where the ElasticSearch instance is hosted.
ESLOG_ES_PORTThe port number where the ElasticSearch hosts the API on.

Example usage

Start the ElasticSearch docker:

docker run -d -p 9200:9200 elasticsearch

Start this docker:

docker run -d -e ESLOG_HOST={hostip} -e ESLOG_ES_PORT=9200 -p 5514:514 visity/rsyslog-elasticsearch

where {hostip} should be the ip address of the elasticsearch docker host. I used port 5514 so it will not conflict with any locally running syslog instance.

On a docker 1.8 machine (which supports tagging):

docker run -d --log-driver=syslog --log-opt syslog-address=tcp://{hostip}:5514 --log-opt syslog-tag="redis" redis

Tag summary

Content type

Image

Digest

sha256:2a5d28135

Size

83.7 MB

Last updated

about 11 years ago

docker pull visity/rsyslog-elasticsearch