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

36 lines
698 B
Text
Raw Normal View History

2023-08-02 16:07:24 +00:00
# vi: ft=yaml
# Receive events from 24224/tcp
# This is used by log forwarding and the fluent-cat command
<source>
@type forward
2023-08-07 20:46:53 +00:00
port {{ fluent_forward_port }}
2023-08-02 16:07:24 +00:00
</source>
<filter access.**>
@type geoip
geoip_lookup_keys host
backend_library geoip2_c
<record>
latitude ${location.latitude["host"]}
longitude ${location.longitude["host"]}
</record>
skip_adding_null_record true
</filter>
<match cpu memory diskfree access.**>
2023-08-02 16:07:24 +00:00
@type elasticsearch
host maestro.dmz
port {{ elasticsearch_port }}
include_timestamp true
logstash_format true
logstash_prefix fluentd.${tag}
2023-08-02 16:07:24 +00:00
</match>
2023-08-23 15:42:03 +00:00
<match **>
@type null
</match>
2023-08-02 16:07:24 +00:00
<system>
log_level info
</system>