在Grafana中创建ElasticSearch查询表

时间:2018-11-18 08:32:05

标签: elasticsearch group-by grafana

我最近尝试了解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 |

如何制作这样的桌子或与此类似的东西

谢谢:)

0 个答案:

没有答案