Recipe Syslog To Elasticsearch


Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
$ gem install fluentd
$ gem install fluent-plugin-elasticsearch
$ touch fluentd.conf<source>
@type syslog
port 5140
bind 0.0.0.0
tag system.local
</source>
<match **>
@type elasticsearch
logstash_format true
host <hostname> #(optional; default="localhost")
port <port> #(optional; default=9200)
index_name <index name> #(optional; default=fluentd)
type_name <type name> #(optional; default=fluentd)
</match>$ fluentd -c fluentd.conf