在kibana中显示数组和对象数组的漂亮方法

tej*_*007 5 javascript json data-visualization elasticsearch kibana

我是kibana的新手,我刚刚完成了在kibana中使用elasticsearch数据构建仪表板的过程。在kibana中的对象数组和对象数组只是以字符串形式显示,而不是一种漂亮的方式。

数组示例:

"tags": [
        "Anthem",
        "Healthcare"
      ]
Run Code Online (Sandbox Code Playgroud)

但是在基巴纳语中以以下方式显示

["Anthem","Healthcare"]
Run Code Online (Sandbox Code Playgroud)

对象数组的例子

  "observations": [
      {
        "category": [
          "phishing"
        ],
        "impact": "phishing url",
        "observedAt": 1406564412,
        "description": "Phishing Other",
        "sourceConfidence": 7,
        "source": "phishtank.com",
        "sourceMaliciousness": "medium"
      }
    ],
Run Code Online (Sandbox Code Playgroud)

但是在基巴纳语中以以下方式显示

{"category":["phishing"],"impact":"phishing url","observedAt":1406564412,"description":"Phishing Other","sourceConfidence":7,"source":"phishtank.com",...
Run Code Online (Sandbox Code Playgroud)

我想将标签显示为可点击的锚点,从而以更美观的方式触发新的搜索或至少显示一个数组。有什么办法可以实现?