为 ELK docker 图像观察到的数组中的对象未得到很好的支持错误

Objects in array is not well supported error observed for ELK docker image

我正在为 kibana 仪表板使用最新的麋鹿图像,我有 json 文件,其中包含数组 [] 列表,我无法在 kibana 中将它们显示为字段,它显示数组中的对象没有得到很好的支持错误消息。

根据 kibana 中的文档,我刚刚浏览了下面的 link,但我没有找到任何对麋鹿有用的东西 docker 图片。

    https://github.com/istresearch/kibana-object-format

我刚刚尝试 运行 命令

   Run bin/kibana-plugin install <package.zip>

但它返回为 运行 是删除的未知命令 运行 和 运行 剩余命令但它说那是无效的。

我正在使用 linux box 和 Kibana 7.3 版本。

是否可以解决这个问题?如何为麋鹿图像部署该插件还有其他方法可以将这些数组对象作为 kibana 中的字段。

我不确定我该如何继续。请帮助我。

示例数据:

{
    "expand": "schema,names",
    "startAt": 0,
    "maxResults": 50,
    "total": 4,
    "issues": [{
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "id": "1999875",
            "self": "https://amazon.kindle.com/jira/rest/api/2/issue/1999875",
            "key": "KINDLEAMZ-67578",
            "fields": {
                "summary": "contingency is displaying for confirmed card.",
                "priority": {
                    "name": "P1",
                    "id": "1"
                },
                "created": "2019-09-23T11:25:21.000+0000"
            }
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "id": "2019428",
            "self": "https://amazon.kindle.com/jira/rest/api/2/issue/2019428",
            "key": "KINDLEAMZ-68661",
            "fields": {
                "summary": "card",
                "priority": {
                    "name": "P1",
                    "id": "1"
                },
                "created": "2019-09-23T11:25:21.000+0000"
            }
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "id": "2010958",
            "self": "https://amazon.kindle.com/jira/rest/api/2/issue/2010958",
            "key": "KINDLEAMZ-68167",
            "fields": {
                "summary": "Test Card",
                "priority": {
                    "name": "P1",
                    "id": "1"
                },
                "created": "2019-09-23T11:25:21.000+0000"
            }
        }
    ]
}

我只想从上面的每个数组中获取 KEY、Summary、Priority。但是当我试图让一个字段在 kibana 中显示为数组时,它没有按预期工作。如果这不适用于 7.3.0,我应该降级到较低版本吗?该文档中缺少 docker 用户的步骤。有什么办法可以得到这些细节吗?

在此处查看:https://github.com/istresearch/kibana-object-format/releases 插件最新版本似乎适用于 Elasticsearch 6.3。我想这就是你出错的原因。

我不确定 kibana 中是否有针对此问题的修复程序。这个主题有很多issues,open了很久,像:https://github.com/elastic/kibana/issues/3333