24 lines
463 B
Django/Jinja
24 lines
463 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 cpu memory diskfree docker.forgejo_forgejo.**>
|
|
@type elasticsearch
|
|
host maestro.dmz
|
|
port {{ elasticsearch_port }}
|
|
include_timestamp true
|
|
logstash_format true
|
|
logstash_prefix fluentd.${tag}
|
|
</match>
|
|
|
|
<match **>
|
|
@type null
|
|
</match>
|
|
|
|
<system>
|
|
log_level info
|
|
</system>
|