fluentd-ingest/docker/fluentd/fluent.conf

22 lines
256 B
Plaintext

<system>
log_level debug
</system>
<source>
@type forward
port 24224
bind 0.0.0.0
</source>
<filter docker.**>
@type grep
<regexp>
key log
pattern /Rocket has launched/
</regexp>
</filter>
<match docker.**>
@type stdout
</match>