想解析多层的json数据格式,但两次json解析不行,好像是数据格式已经不对了原始数据:{"timestamp": "2018-09-03T11:43:15+08:00","other": {"content-type": "abc"}}
我的logstash配置
input {
stdin{}
}
filter {
json {
source => "message" }
json {
source => "other"}
}
output{
stdout{}
}
改怎么配置 才能获取这种:
{
"timestamp": "2018-09-03T11:43:15+08:00",
"content-type": "abc"
}
我的logstash配置
input {
stdin{}
}
filter {
json {
source => "message" }
json {
source => "other"}
}
output{
stdout{}
}
改怎么配置 才能获取这种:
{
"timestamp": "2018-09-03T11:43:15+08:00",
"content-type": "abc"
}
2 个回复
rochy - rochy_he
赞同来自:
可以试一下上面的配置
zyy
赞同来自: