1
0
mirror of https://github.com/krislamo/graylog_demo synced 2024-09-20 06:00:35 +00:00
graylog_demo/fluentd/fluent.conf

49 lines
735 B
Plaintext
Raw Normal View History

<source>
@type forward
port 24224
</source>
<source>
@type syslog
port 5140
tag system
</source>
<source>
@type tail
path /var/log/hostlogs/httpd/access_log
pos_file /var/log/hostlogs/httpd/access_log.pos
tag httpd.access
<parse>
@type apache2
</parse>
</source>
2020-02-18 22:43:28 +00:00
<match devel.*>
@type copy
<store>
@type file
path /var/log/hostlogs/containers/${tag}
append true
<buffer tag>
timekey 5s
flush_mode immediate
</buffer>
</store>
<store>
@type rewrite_tag_filter
<rule>
key container_name
pattern /\/(.+)/
tag ${tag}.$1
</rule>
</store>
2020-02-18 22:43:28 +00:00
</match>
<match **>
@type gelf
host vagrant_graylog_1
port 12201
flush_interval 5s
</match>