logstash-plugins / logstash-codec-multiline

Apache License 2.0
7 stars 31 forks source link

Doc still provides an example of using the multiline filter #51

Open ppf2 opened 7 years ago

ppf2 commented 7 years ago

Documentation still provides an example of using the multiline filter:

https://www.elastic.co/guide/en/logstash/current/plugins-codecs-multiline.html

image

addykim commented 7 years ago

As of now it seems that this has been fixed sometime before commit https://github.com/logstash-plugins/logstash-codec-multiline/commit/65345f8d16851a0127bcfd5ef28369ce01350cdf but the changes are not reflected in production.

input {
    stdin {
        codec => multiline {
          pattern => "^\s"
          what => "previous"
        }
    }
}