Hideout/develop/fluentd/conf/fluent.conf

22 lines
370 B
Plaintext
Raw Normal View History

<source>
@type tail
path /in/logFile.log.json
pos_file /in/logFile.pos
tag hideout
<parse>
@type json
</parse>
</source>
<match hideout>
@type elasticsearch
host elasticsearch
2024-09-12 16:38:12 +00:00
include_tag_key true
port 9200
include_timestamp true
user elastic
password Passw0rd
2024-09-12 16:38:12 +00:00
logstash_format true
logstash_prefix hideout
flush_interval 10s
</match>