Logstash之控制台输出的两种方式
时间:2019-12-18 14:03:22
收藏:0
阅读:409
- 输出json
output {
stdout {
codec => json
}
}

- 输出rubydebug
output {
stdout {
codec => rubydebug
}
}

原文:https://www.cnblogs.com/sanduzxcvbnm/p/12058984.html
评论(0)