Skip to content

Fluentd

TIP

Each and every logging architecture is unique. We aim to give you a generic configuration to get you going, but ultimately, is your task to tailor it to your own needs. If you need further help, please open a Github issue or send us an email.

Find out more about Fluent bit.

JSON

bash
<source>
  @type tail
  @id input_tail
  <parse>
    @type json
  </parse>
  path /Library/Application Support/Logga/audit.log
  tag logga
</source>

<match logga>
 @type elasticsearch
 host localhost
 port 9200
 user elastic
 password ***
 scheme https
</match>