This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
shoarma/ansible/roles/monitoring/fluent.conf.j2
Pim Kunis 8398975132 fix fluentd buffering
change ES index format to logstash format
2023-08-09 11:04:15 +02:00

20 lines
385 B
Django/Jinja

# vi: ft=yaml
# Receive events from 24224/tcp
# This is used by log forwarding and the fluent-cat command
<source>
@type forward
port {{ fluent_forward_port }}
</source>
<match *>
@type elasticsearch
host maestro.dmz
port {{ elasticsearch_port }}
include_timestamp true
logstash_format true
logstash_prefix fluentd.${tag}
</match>
<system>
log_level info
</system>