Merge "beats: allow definition of custom hostname where necessary"

This commit is contained in:
Zuul 2022-06-01 14:21:13 +00:00 committed by Gerrit Code Review
commit a2db066e0e
6 changed files with 18 additions and 6 deletions

View File

@ -207,7 +207,9 @@ auditbeat.modules:
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
#name:
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different

View File

@ -1100,7 +1100,9 @@ filebeat.inputs:
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
#name:
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different

View File

@ -334,7 +334,9 @@ heartbeat.scheduler:
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
#name:
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different

View File

@ -70,7 +70,9 @@ setup.template.settings:
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
# name: journalbeat
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different

View File

@ -961,7 +961,9 @@ metricbeat.modules:
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
#name:
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different

View File

@ -630,7 +630,9 @@ packetbeat.ignore_outgoing: false
# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
# If this options is not defined, the hostname is used.
#name:
{% if elastic_hostname is defined %}
name: {{ elastic_hostname }}
{% endif %}
# The tags of the shipper are included in their own field with each
# transaction published. Tags make it easy to group servers by different