最近两天我一直在阅读JQ-s文档,却没有找到如何提取值并将它们放在一起的方法。

我有一些curl输出:

...
{
    "key": "Agreement",
    "doc_count": 1603,
    "level_cnt": {
        "doc_count_error_upper_bound": 0,
        "sum_other_doc_count": 0,
        "buckets": [
            {
            "key": "INFO",
            "doc_count": 1458
          },
          {
            "key": "ERROR",
            "doc_count": 145
          }
        ]
    }
}
...


任务是获取第一个键并将其与下一个键及其值组合:

AgreementINFO:1458ERROR:145

麻烦的是,当我尝试解析必要的键时,它们的值又相互融合在一起:

jq '.aggregations.controller_cnt.buckets[].key, .aggregations.controller_cnt.buckets[].level_cnt.buckets[].key, .aggregations.controller_cnt.buckets[].level_cnt.buckets[].doc_count

"Agreement""INFO""ERROR"1469149

如何建立这个jq查询?

提前感谢!

最佳答案

只需将其映射到字符串即可。

jq --raw-output '.key, ( .level_cnt.buckets[] | "\(.key):\(.doc_count)" )'


输入以下内容:

{
    "key": "Agreement",
    "doc_count": 1603,
    "level_cnt": {
        "doc_count_error_upper_bound": 0,
        "sum_other_doc_count": 0,
        "buckets": [
            {
            "key": "INFO",
            "doc_count": 1458
          },
          {
            "key": "ERROR",
            "doc_count": 145
          }
        ]
    }
}


将输出:

Agreement
INFO:1458
ERROR:145


jq play测试。

关于json - 如何解析JSON输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56648694/

10-15 04:03