nix-config/ansible/roles/elastic.beats/templates/beat.yml.j2

23 lines
880 B
Plaintext
Raw Normal View History

2021-03-04 18:32:20 +01:00
# {{ ansible_managed }}
2019-08-13 16:19:51 +02:00
################### {{beat}} Configuration #########################
############################# {{beat}} ######################################
2021-03-04 18:32:20 +01:00
{{ beat_conf | to_nice_yaml(indent=2) }}
2019-08-13 16:19:51 +02:00
###############################################################################
############################# Libbeat Config ##################################
# Base config file used by all other beats for using libbeat features
############################# Output ##########################################
2021-03-04 18:32:20 +01:00
{{ beat_output_conf | to_nice_yaml(indent=2) }}
2019-08-13 16:19:51 +02:00
{% if shipper_conf is defined %}############################# Shipper #########################################
2021-03-04 18:32:20 +01:00
{{ beat_shipper_conf | to_nice_yaml(indent=2) }}
2019-08-13 16:19:51 +02:00
{% endif %}
############################# Logging #########################################
2021-03-04 18:32:20 +01:00
{{ beat_logging_conf | to_nice_yaml(indent=2) }}