Hi
I'm just curious about the needed settings in a Beat file when the cluster is in the Elastic cloud.
Currently my config files looks like this:
output.elasticsearch:
hosts: ["https://....us-east-1.aws.found.io:..."]
username: "monitor"
password: "${MONITOR_PASSWORD}"
compression_level: 3
setup.kibana:
host: "....us-east-1.aws.found.io:..."
protocol: "https"
cloud.id: "monitor:...=="
cloud.auth: "monitor:${MONITOR_PASSWORD}"
The docs state that I could use the cloud.* output to make things easier. But that output doesn't have settings like the compression_level for instance.
Could the above configuration be reduced to something like this:
output.elasticsearch:
compression_level: 3
cloud.id: "monitor:...=="
cloud.auth: "monitor:${MONITOR_PASSWORD}"
- Should I choose between
output.elasticsearchorcloud.*? - Shoul I use both because I want to set the
compression_level? - What is the
setup.kibanaused for? Only to set the dashboards one time for cluster?
Thank you