Configure Filebeat to send data through your new Elasticsearch pipeline
instructions
At minimum you'll need to configure Filebeat's Elasticsearch output with a hostname, an index name, and a
paramaters
block. Your config should end up looking something like this:
output:
elasticsearch:
hosts: ["your-elasticsearch-host"]
index: "your-base-index-name"
parameters:
pipeline: "{{installStep.pipelineId}}"
NOTE: The Filebeat config takes a base index name and automatically rotates the target index by appending "-{date}"
to the end, so if your pattern was "filebeat-*" you would make the index name "filebeat" in filebeat.yml.