dockerEnv/fluentd/conf/fluent.conf

24 lines
383 B
Plaintext
Raw Normal View History

2018-11-28 17:31:14 +00:00
<source>
@type forward
port 24224
bind 0.0.0.0
</source>
<match *.**>
@type copy
<store>
2018-11-30 16:18:29 +00:00
@type elasticsearch
host elastic_elena
logstash_format true
logstash_prefix fluentd
logstash_dateformat %Y%m%d
include_tag_key true
type_name access_log
2018-11-28 17:31:14 +00:00
tag_key @log_name
flush_interval 1s
</store>
<store>
@type stdout
</store>
</match>