Sha256: 8a9c0562ce390cdaaaa16b6984a3498c1ad627283d20915fd7dafbff5cdbe1d4

Contents?: true

Size: 692 Bytes

Versions: 6

Compression:

Stored size: 692 Bytes

Contents

#
# bundle exec bin/fluentd -c example/out_buffered_null.conf
#   (+ --emit-error-log-interval 10)
<source>
  @type dummy
  tag dummy
  rate 500000000
  dummy [
    {"message": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"},
    {"message": "bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb"},
    {"message": "ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"}
  ]
</source>

<match dummy.**>
  @type buffered_null
  try_flush_interval 60
  flush_interval 60
  buffer_chunk_limit 1k
  buffer_queue_limit 2
</match>

<label error_log>
  <match **>
    @type stdout # or buffered_stdout
  </match>
</label>

<match fluent.**>
  @type relabel
  @label error_log
</match>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fluentd-0.14.4-x64-mingw32 example/out_buffered_null.conf
fluentd-0.14.4-x86-mingw32 example/out_buffered_null.conf
fluentd-0.14.4 example/out_buffered_null.conf
fluentd-0.14.3 example/out_buffered_null.conf
fluentd-0.14.2 example/out_buffered_null.conf
fluentd-0.14.1 example/out_buffered_null.conf