Couldn't find any filter plugin named 'multiline'

I am using logstash-5.0.0, whenever I am using multiline plugin It give me "Loaderror".

That filter isn't included by default so you'll have to install it with the logstash-plugin command.

The reason the filter isn't included is that it's deprecated. You should look into using the multiline codec instead, or move your multiline processing elsewhere.

I am reffering to this link :
https://www.elastic.co/guide/en/logstash/5.0/plugins-codecs-multiline.html

this code:
filter {
multiline {
type => "somefiletype"
pattern => "\$"
what => "next"
}
}

But it still showing me same error.

Please show the exact error message.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.