logstash input监控json文件
Posted 小鱼#
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了logstash input监控json文件相关的知识,希望对你有一定的参考价值。
1. UTF-8编码,无BOM格式,否则容易乱码
2. 经过压缩的JSON——单行文件
3. 带有line terminators——否则会导致不出发logstash的event
通过配置output为:
output { stdout { codec => json }
输出:
{"name":"lll","sex":"xxx","age":123,"@version":"1","@timestamp":"2016-03-07T15:51:04.211Z","path":"/home/data/test.json","host":"virtual-machine"}
可以发现,输出的内容也满足以上3个特点。
通过配置output为:
output { stdout { codec => rubydebug #codec => json }
输出:
Logstash startup completed
{
"name" => "lll",
"sex" => "xxx",
"age" => 123,
"@version" => "1",
"@timestamp" => "2016-03-07T15:51:43.005Z",
"path" => "/home/data/test.json",
"host" => "virtual-machine"
}
可以发现,输出的格式为ruby JSON。
以上是关于logstash input监控json文件的主要内容,如果未能解决你的问题,请参考以下文章
Logstash之Logstash inputs(file和redis插件)Logstash outputs和Filter plugins