Add fluentd support

This commit is contained in:
2018-11-28 18:31:14 +01:00
parent c360e96f22
commit 10559e7980
5 changed files with 73 additions and 0 deletions

20
fluentd/conf/fluent.conf Normal file
View File

@ -0,0 +1,20 @@
<source>
@type forward
port 24224
bind 0.0.0.0
</source>
<match *.**>
@type copy
<store>
@type influxdb
host exen-influxdb
dbname logging
port 8086
tag_key @log_name
flush_interval 1s
</store>
<store>
@type stdout
</store>
</match>