我正在使用流利的文件插件。有没有办法配置它只保留最后X个文件(例如最后10个文件)?我没有在文档中找到它。
第二个不太重要的问题 - 如何设置索引
的文件名myApp_1.log
myApp_2.log
。
myApp_10.log
我的fluent.conf是:
# Receive events from 24224/tcp
# This is used by log forwarding and the fluent-cat command
<source>
@type forward
port 24224
</source>
<filter **>
@type record_transformer
remove_keys source,container_id,container_name
</filter>
<match tagger*>
@type copy
<store>
@type file
path /fluentd/log/tagger/tagger
append true
time_slice_format %Y%m%d%H
output_time false
</store>
<store>
@type stdout
</store>
</match>