解析json格式时,filter插件的定义:

filter{
    json{
        source => "message"
        target => "jsoncontent"
    }
}

运行结果:

{
    “@version”:1,
    “@timestamp":"2019-03-01T09:12:12.123Z"
    "host": "localhost"
    "message": "{\"uid\":1234, \"type\":\"test\"}",
    "jsoncontent":{
        "uid": 1234,
        "type": "test"
    }
}

如果想在顶级结构下生成对应的字段,去掉filter插件中的target这个设置,如下所示:

filter{
    json{
        source => "message"
    }
}

去掉后的运行结果:

{
    “@version”:1,
    “@timestamp":"2019-03-01T09:12:12.123Z"
    "host": "localhost"
    "message": "{\"uid\":1234, \"type\":\"test\"}",
    "uid": 1234,
    "type": "test"
}

 

GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 6 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐