ELK 学习笔记之 Logstash之codec
Posted AK47Sonic
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ELK 学习笔记之 Logstash之codec相关的知识,希望对你有一定的参考价值。
Logstash之codec:
Logstash处理流程:
input=》decode=》filter=》encode=》output
分类:
Plain编码:
input{
stdin{
codec => plain
}
}
output{
stdout{}
}
json编码:
input{
stdin{
}
}
output{
stdout{
codec => json
}
}
multiline 编码:
input{
stdin{
codec => multiline{
pattern => "^\\["
negate => true
what => "previous"
}
}
}
output{
stdout{}
}
以上是关于ELK 学习笔记之 Logstash之codec的主要内容,如果未能解决你的问题,请参考以下文章