logstash输入(2)stdin

描述

从标准输入读取事件。

默认情况下,每一行读取为一个事件。如果要多行读取为一个事件,则需要使用multiline解码器

1
2
3
4
input {
stdin {
}
}
>