流利的文件插件\如何只保留最新的X文件?

时间:2016-04-17 12:55:17

标签: docker fluentd

我正在使用流利的文件插件。有没有办法配置它只保留最后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>

0 个答案:

没有答案