Fix tagging so that logstash version resolves in example

Fixes #5150
This commit is contained in:
DeDe Morton 2016-04-20 16:15:30 -07:00
parent c457727575
commit 4f9c7aeaa9

View file

@ -132,9 +132,11 @@ yum install logstash
To test your Logstash installation, run the most basic Logstash pipeline:
[source,shell]
["source","sh",subs="attributes"]
--------------------------------------------------
cd logstash-{logstash_version}
bin/logstash -e 'input { stdin { } } output { stdout {} }'
--------------------------------------------------
The `-e` flag enables you to specify a configuration directly from the command line. Specifying configurations at the
command line lets you quickly test configurations without having to edit a file between iterations.