The _fluent-bit-servarr_ role creates a configuration file for Fluent Bit to read and parse logs from Radarr, Sonarr, and Prowlarr. These logs can then be sent to an output by defining the `fluent_bit_servarr_outputs` variable.
13 lines
301 B
YAML
13 lines
301 B
YAML
- name: ensure fluent-bit configuration for servarr is in place
|
|
copy:
|
|
content: |+
|
|
{{ fluent_bit_servarr_config | to_nice_yaml(indent=2) }}
|
|
dest: /etc/fluent-bit/include/servarr.yml
|
|
mode: u=rw,go=r
|
|
owner: root
|
|
group: root
|
|
notify:
|
|
- restart fluent-bit
|
|
tags:
|
|
- config
|