Json使用jq来解析,读取,如果找到条目则返回true

发布于 2025-01-11 04:19:23 字数 881 浏览 0 评论 0原文

抱歉,如果这是基本的,但 jq 的文档不太好 我有这个 json:

{
    "jsonrpc": "2.0",
    "result": [{
        "hostid": "10084",
        "host": "Zabbix server",
        "interfaces": [{
            "interfaceid": "1",
            "ip": "127.0.0.1"
        }]
    }, {
        "hostid": "10336",
        "host": "AUTO",
        "interfaces": [{
            "interfaceid": "4",
            "ip": "1.2.3.4"
        }]
    }, {
        "hostid": "10337",
        "host": "AUTOSERVER",
        "interfaces": [{
            "interfaceid": "5",
            "ip": "4.5.6.7"
        }]
    }, {
        "hostid": "10348",
        "host": "Server00001",
        "interfaces": [{
            "interfaceid": "16",
            "ip": "4.5.6.7"
        }]
    
    }],
    "id": 2
}

我需要找到一种方法来使用 jq 来查找其中一台主机中是否存在“Server0001” 我知道我可以使用 grep 但我更喜欢在这里使用 jq,比如 select.. 任何帮助或参考好的文档将不胜感激

Apologies if this is basic but the doc for jq is not so good
i have this json:

{
    "jsonrpc": "2.0",
    "result": [{
        "hostid": "10084",
        "host": "Zabbix server",
        "interfaces": [{
            "interfaceid": "1",
            "ip": "127.0.0.1"
        }]
    }, {
        "hostid": "10336",
        "host": "AUTO",
        "interfaces": [{
            "interfaceid": "4",
            "ip": "1.2.3.4"
        }]
    }, {
        "hostid": "10337",
        "host": "AUTOSERVER",
        "interfaces": [{
            "interfaceid": "5",
            "ip": "4.5.6.7"
        }]
    }, {
        "hostid": "10348",
        "host": "Server00001",
        "interfaces": [{
            "interfaceid": "16",
            "ip": "4.5.6.7"
        }]
    
    }],
    "id": 2
}

i need to find a way to use jq to find if "Server0001" exists in one of the hosts
i know i can use grep but i prefer using jq here, like select..
any help or ref toa good doc would be much appriciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尬尬 2025-01-18 04:19:23

任何(请参阅manual) 如果条件与至少一项匹配,则可以返回布尔值。

jq 'any(.result[]; .host == "Server0001")'
false

演示

jq 'any(.result[]; .host == "Server00001")'
true

演示


您可能还想在调用 jq 时使用一些参数(请参阅manual):--arg 选项,例如,允许您添加一个可以从过滤器字符串外部初始化的变量。使用 -e (或 --exit-status)标志,您可以让 jq 根据过滤器的最终结果设置退出状态。总之,这使您能够像这样使用 jq

if jq --arg host "Server0001" -e 'any(.result[]; .host == $host)';
then
  …
else
  …
fi

any (see the manual) can return a boolean value if a condition matches with at least one item.

jq 'any(.result[]; .host == "Server0001")'
false

Demo

jq 'any(.result[]; .host == "Server00001")'
true

Demo


You may also want to use the some parameters when invoking jq (see the manual): The --arg option, for instance, lets you add a variable which can be initialized from outside the filter string. And with the -e (or --exit-status) flag you can have jq set the exit status according to the filter's final result. Together, this enables you to use jq like this:

if jq --arg host "Server0001" -e 'any(.result[]; .host == $host)';
then
  …
else
  …
fi
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文