我是kibana的新手,我刚刚使用elasticsearch数据在kibana中完成了一个仪表板。 kibana中的数组和对象数组只是按字母顺序显示而不是很漂亮。
数组示例:
Arrays.copyOfRange(...)
但是kibana以下列方式显示
"tags": [
"Anthem",
"Healthcare"
]
对象数组的示例
["Anthem","Healthcare"]
但是kibana以下列方式显示
"observations": [
{
"category": [
"phishing"
],
"impact": "phishing url",
"observedAt": 1406564412,
"description": "Phishing Other",
"sourceConfidence": 7,
"source": "phishtank.com",
"sourceMaliciousness": "medium"
}
],
我希望将标签显示为可点击的锚点,这些锚点会以比仅显示数组更漂亮的方式触发新搜索或至少。 有什么办法可以实现吗?