...
Code Block |
---|
set +o history filebeat setup --index-management \ -E output.logstash.enabled=false \ -E 'output.elasticsearch.hosts=["FQDN-kibanaelastic.example.org:9200443"]' \ -E output.elasticsearch.protocol=https \ -E output.elasticsearch.username=elastic \ -E output.elasticsearch.password=elastic-password-goes-here \ -E 'output.elasticsearch.ssl.certificate_authorities=["/etc/filebeat/certs/ca-certificates.crt"]' set -o history |
The above command loads the template from FQDN-kibanaelastic.example.org node where elasticsearch is installed. Detailed information is written in the Filebeat log file.
...