【发布时间】:2017-01-27 14:46:24
【问题描述】:
我有一个复杂的 json 文件,嵌套在第 4 层和第 5 层,我正在尝试使用 jq 获得以下结果。任何帮助将不胜感激:
{
"Name": "unix-global",
"Title": "AWS cli should be installed",
"desc": "System Package aws-cli should be installed",
"result": "passed"
}
{
"Name": "unix-global",
"Title": "AWS cli should be installed",
"desc": "Service besclient should be installed",
"result": "failed"
}
这是一个 json 文件,我通过运行检查配置文件获得。真正的目的是将唯一需要的信息提取到一个简单的 json 中,以便我最终可以更新 AWS Redshift 数据库。
{
"version": "1.7.1",
"profiles": [{
"name": "java",
"title": "InSpec Java in system",
"maintainer": "awim",
"copyright": "awim / mtaqwim",
"copyright_email": "muhammadtaqwiem@gmail.com",
"license": "All Rights Reserved",
"summary": "An InSpec Compliance Profile",
"version": "0.0.1",
"supports": [],
"controls": [{
"title": "identify java in system",
"desc": "identify java in PATH system",
"impact": 0.3,
"refs": [],
"tags": {},
"code": "control 'java-1.0' do\n impact 0.3\n title 'identify java in system'\n desc 'identify java in PATH system'\n\n describe java_info do\n it{ should exist }\n its(:version){ should match '1.7'}\n end\nend",
"source_location": {
"ref": "inspec/java/controls/java_1.0.rb",
"line": 6
},
"id": "java-1.0",
"results": [{
"status": "passed",
"code_desc": "java_info should exist",
"run_time": 0.000895896,
"start_time": "2017-01-20 05:04:47 +0000"
}, {
"status": "passed",
"code_desc": "java_info version should match \"1.7\"",
"run_time": 0.067581113,
"start_time": "2017-01-20 05:04:47 +0000"
}]
}, {
"title": "run java from specific path",
"desc": "run java from specific path",
"impact": 1.0,
"refs": [],
"tags": {},
"code": "control 'java-2.0' do\n impact 1.0\n title 'run java from specific path'\n desc 'run java from specific path'\n\n describe java_info(java_path) do\n it{ should exist }\n its(:version){ should match '1.7'}\n end\nend",
"source_location": {
"ref": "inspec/java/controls/java_2.0.rb",
"line": 8
},
"id": "java-2.0",
"results": [{
"status": "skipped",
"code_desc": "java_info",
"skip_message": "Can't find file \"/opt/jdk/current\"",
"resource": "java_info",
"run_time": 1.6512e-05,
"start_time": "2017-01-20 05:04:47 +0000"
}]
}, {
"title": "identify java home",
"desc": "identify java home match to specific path",
"impact": 0.1,
"refs": [],
"tags": {},
"code": "control 'java-3.0' do\n impact 0.1\n title 'identify java home'\n desc 'identify java home match to specific path'\n\n describe java_info(java_path) do\n its(:java_home){ should match java_path}\n end\nend",
"source_location": {
"ref": "inspec/java/controls/java_3.0.rb",
"line": 8
},
"id": "java-3.0",
"results": [{
"status": "skipped",
"code_desc": "java_info",
"skip_message": "Can't find file \"/opt/jdk/current\"",
"resource": "java_info",
"run_time": 6.139e-06,
"start_time": "2017-01-20 05:04:47 +0000"
}]
}],
"groups": [{
"title": "which(UNIX)/where(Windows) java installed",
"controls": ["java-1.0"],
"id": "controls/java_1.0.rb"
}, {
"title": "which(UNIX)/where(Windows) java installed",
"controls": ["java-2.0"],
"id": "controls/java_2.0.rb"
}, {
"title": "which(UNIX)/where(Windows) java installed",
"controls": ["java-3.0"],
"id": "controls/java_3.0.rb"
}],
"attributes": []
}],
"other_checks": [],
"statistics": {
"duration": 0.069669698
}
}
【问题讨论】:
-
您应该 a) 准确描述简化 JSON 中应该包含的内容,b) 展示您如何尝试提取它以及如何失败,而不是期望有人为您编写代码。
-
@user5188385 - 请放心,jq 是您任务的绝佳选择,所以我建议您学习基础知识,当您有更具体的问题时,请提供一个最小的完整可验证示例stackoverflow.com/help/mcve 的指南
-
第一个代码块是我期望的结果...名称、标题、描述、复杂 json 的结果(在第二个代码块中)。使用jqplay.org 上的复杂 json 尝试此代码:.profiles[0].name, .profiles[0].controls[].title, .profiles[0].controls[].results[].status
标签: amazon-redshift jq inspec