我最近尝试了解Grafana以便在表中显示ElasticSearch数据。
想想我在ElasticSearch中有这样的成功:
"hits": {
"total": 1,
"max_score": 1,
"hits": [
{
"_index": "test",
"_type": "test",
"_id": "1",
"_score": 1,
"_source": {
"games": {
"game1": {
"version": "",
"name": "",
"type": [
"online",
"offline"
]
},
"game2": {
"version": "",
"name": "",
"type": [
"online"
]
},
"game3": {
"version": "",
"name": "",
"type": [
"offline"
]
}
},
"size": 162311,
"status": "playing"
}
}
]
}
我需要与此表相同:
|类型| ......游戏... | .....计数..... |
|在线| game1,game2 | 2 |
|离线| game1,game3 | 2 |
如何制作这样的桌子或与此类似的东西
谢谢:)