Grafana worldmap:表数据源

时间:2016-07-06 07:49:32

标签: grafana

我正在尝试将grafana的worldmap插件与表数据一起用作数据源(在我的案例中为Influxdb),它得到了最新版本的支持。 link

但遗憾的是我无法让它发挥作用。我使用与插件文档中相同的查询,但我的世界地图中没有显示任何点。以下是我的查询的屏幕截图:

enter image description here

enter image description here

这是我插入Influxdb的示例:

json_body = [
        {
            "measurement": measurement,
            "tags": {
                "host": host,
                "geohash": geohash
            },
            "fields": {
                "metric": 1
            }
        }
    ]

如果some1可以在这里指出我的问题,那真的很开心。

1 个答案:

答案 0 :(得分:3)

以下是我如何使用来自Influxdb的表数据源的worldmap面板:

表格数据:

{
    "measurement": "ghash",
    "tags": {
        "host": host,
        "geohash": geohash
    },
    "fields": {
        "value": 1
    }
}

Grafana内部的查询:

enter image description here

Worldmap标签:

enter image description here