mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
- fix docs
This commit is contained in:
parent
eaaa295b22
commit
9ae671e8ef
1 changed files with 11 additions and 6 deletions
|
@ -43,13 +43,18 @@ require "logstash/codecs/base"
|
||||||
#
|
#
|
||||||
# This says that any line starting with whitespace belongs to the previous line.
|
# This says that any line starting with whitespace belongs to the previous line.
|
||||||
#
|
#
|
||||||
# Another example is C line continuations (backslash). Here's how to do that:
|
# Another example is to merge lines not starting with a date up to the previous
|
||||||
|
# line..
|
||||||
#
|
#
|
||||||
# filter {
|
# input {
|
||||||
# multiline {
|
# file {
|
||||||
# type => "somefiletype "
|
# path => "/var/log/someapp.log"
|
||||||
# pattern => "\\$"
|
# codec => multiline {
|
||||||
# what => "next"
|
# # Grok pattern names are valid! :)
|
||||||
|
# pattern => "^%{TIMESTAMP_ISO8601} "
|
||||||
|
# negate => true
|
||||||
|
# what => previous
|
||||||
|
# }
|
||||||
# }
|
# }
|
||||||
# }
|
# }
|
||||||
#
|
#
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue