Updates to Advanced Pipeline section.

Fixes #3809
This commit is contained in:
Paul Echeverri 2015-08-27 15:52:55 -07:00 committed by Jordan Sissel
parent b2e2a59c8a
commit 173ba00da8

View file

@ -54,7 +54,7 @@ Edit the `first-pipeline.conf` file to add the following text:
[source,json]
input {
file {
path => "/path/to/groksample.log"
path => "/path/to/logstash-tutorial.log"
start_position => beginning <1>
}
}
@ -63,7 +63,7 @@ input {
UNIX `tail -f` command. To change this default behavior and process the entire file, we need to specify the position
where Logstash starts processing the file.
Replace `/path/to/` with the actual path to the location of `groksample.log` in your file system.
Replace `/path/to/` with the actual path to the location of `logstash-tutorial.log` in your file system.
[float]
[[configuring-grok-filter]]