【发布时间】:2016-12-20 21:42:34
【问题描述】:
我的logstash输入看起来像这样
{
"@timestamp": "2016-12-20T18:55:11.699Z",
"id": 1234,
"detail": {
"foo": 1
"bar": "two"
}
}
我想将 "detail" 的内容与根对象合并,使最终的事件看起来像这样:
{
"@timestamp": "2016-12-20T18:55:11.699Z",
"id": 1234,
"foo": 1
"bar": "two"
}
有没有办法在不编写我自己的过滤器插件的情况下实现这一点?
【问题讨论】:
标签: logstash logstash-configuration