Recipe Syslog To Mongo


Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
$ gem install fluentd
$ gem install fluent-plugin-mongo
$ touch fluentd.conf<source>
@type syslog
port 5140
bind 0.0.0.0
tag system.local
</source>
<match **>
@type mongo
database <db name> #(required)
collection <collection name> #(optional; default="untagged")
host <hostname> #(optional; default="localhost")
port <port> #(optional; default=27017)
</match>$ fluentd -c fluentd.conf