JQ-如何基于数组中对象的值显示对象

时间:2019-10-14 21:53:11

标签: json select jq

我有一个看起来像这样的JSON文件:

{
  "InstanceId": "i-9KwoRGF6jbhYdZi823aE4qN",
  "Tags": [
    {
      "Key": "blah",
      "Value": "server-blah"
    },
    {
      "Key": "environment",
      "Value": "ops"
    },
    {
      "Key": "server_role",
      "Value": "appserver"
    },
    {
      "Key": "Name",
      "Value": "some_name"
    },
    {
      "Key": "product",
      "Value": "some_server"
    }
  ]
}
{
   ...more objects like the above...
}

我需要显示InstanceId,其中“键” ==“环境”和“值” ==“操作”。 我有jq-1.6。

如果我说:

cat source.json | jq '
   { InstanceId, Tags } |
   (.Tags[] | select( .Key == "environment" ))
'

我得到了一些想要的东西,但是我无法弄清楚如何在输出中包括InstanceId,也不能弄清楚如何将select的“和”部分并入。

2 个答案:

答案 0 :(得分:2)

这是使用any的简单但有效的方法:

select( any(.Tags[]; .Key=="environment" and .Value == "ops") )
| .InstanceId

一种避免使用.Tags[]的替代方法:

{"Key": "environment", "Value": "ops"} as $object
| select( .Tags | index($object) )
| .InstanceId

答案 1 :(得分:1)

我不确定这是否是您要查找的确切输出(如果不是,请注释),但这将输出InstanceId个包含Tag的JSON对象。与Key environmentValue ops

jq 'select( .Tags[] | (.Key == "environment" and .Value == "ops")) | .InstanceId' < source.json