Sha256: 695afd4a09b3bcabe2b4317494e87618773345ee7b3e50aa4c6a6c33dcf090e2

Contents?: true

Size: 686 Bytes

Versions: 261

Compression:

Stored size: 686 Bytes

Contents

<system>
  workers 4
  root_dir /path/fluentd/root
</system>

<source> # top-level sections works on all workers in parallel
  @type forward
  port 24224
</source>

<match all> # this sections also works on all workers in parallel
  @type stdout
  <inject>
    worker_id_key worker_id
  </inject>
</match>

<worker 0> # this section works only on first worker process
  <source>
    @type tail
    format none
    path /var/log/fluentd_test.log
    pos_file /var/log/fluentd_test.pos
    tag tail
    rotate_wait 5
    read_from_head true
    refresh_interval 60
  </source>

  <match tail>
    @type stdout
    <inject>
      worker_id_key worker_id
    </inject>
  </match>
</worker>

Version data entries

261 entries across 261 versions & 7 rubygems

Version Path
fluentd-0.14.15 example/worker_section.conf