簡體   English   中英

ELK docker 圖像觀察到數組中的對象沒有得到很好的支持錯誤

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

我正在為 kibana 儀表板使用最新的 elk 圖像,並且我有 json 文件,其中包含數組 [] 列表,我無法在 kibana 中將它們顯示為字段,這表明數組中的 object 不支持錯誤信息。

根據 kibana 中的文檔,我剛剛瀏覽了以下鏈接,但我沒有發現任何對 elk docker 圖像有用的東西。

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

我只是嘗試運行命令

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

但它返回為運行未知命令刪除運行並運行剩余命令但它說這是無效的。

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

有可能克服這個問題嗎? 如何為 elk 圖像部署該插件,否則還有其他方法可以使這些 arrays object 成為 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,開了很久,比如: https://github.com/elastic/kibana/issues/3333

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM