Merge "beats: allow definition of custom hostname where necessary"
This commit is contained in:
commit
a2db066e0e
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user