Skip to content

Commit

Permalink
Fix 6748 - Make pipeline creation step skipable
Browse files Browse the repository at this point in the history
  • Loading branch information
Bargs committed Apr 26, 2016
1 parent 2f789e2 commit 9e09d12
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h3>Follow these instructions to install Filebeat</h3>
</a>)
</li>

<li>
<li ng-if="installStep.results.pipeline.processors.length">
Configure Filebeat to send data through your new Elasticsearch pipeline
(<a target="_blank" href="https://www.elastic.co/guide/en/beats/filebeat/master/elasticsearch-output.html">
instructions
Expand All @@ -38,6 +38,23 @@ <h3>Follow these instructions to install Filebeat</h3>
to the end, so if your pattern was "filebeat-*" you would make the index name "filebeat" in filebeat.yml.<br /><br />
</li>


<li ng-if="!installStep.results.pipeline.processors.length">
Configure Filebeat to send data to Elasticsearch
(<a target="_blank" href="https://www.elastic.co/guide/en/beats/filebeat/master/elasticsearch-output.html">
instructions
</a>)<br />
At minimum you'll need to configure Filebeat's Elasticsearch output with a hostname and an index name.
Your config should end up looking something like this:<br /><br />
<pre>
output:
elasticsearch:
hosts: ["your-elasticsearch-host"]
index: "your-base-index-name"</pre>
<em>NOTE</em>: 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.<br /><br />
</li>

<li ng-if="installStep.results.indexPattern.id !== 'filebeat-*'">
Edit <code>filebeat.template.json</code> (in the Filebeat directory). The line that reads
<code>"template": "filebeat-*"</code> should become
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
<div>
<button
class="btn btn-primary"
ng-disabled="!wizard.stepResults.pipeline"
ng-click="wizard.nextStep()">
Next
</button>
Expand Down

0 comments on commit 9e09d12

Please sign in to comment.