505 B
505 B
If filebeat version on the newly setup server doesn't match the one on Elasticsearch server then you'll have to create the indexes manually.
- Export the index payload from the newly setup server
filebeat export template > filebeat.template.json
- Use the exported payload to create indexes (Replace
filebeat-versionwith the appropriate version)
curl -XPUT -H 'Content-Type: application/json' http://localhost:9200/_template/filebeat-<filebeat-version> -d@filebeat.template.json