本文介绍了具有Influxdb的Grafana世界地图面板不显示点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我安装了用于Grafana的Worldmap Panel,但无法在Worldmap Panel上显示点.我在看

I installed Worldmap Panel for Grafana but I cannot display points on Worldmap Panel. I looked at Grafana worldmap: table datasourceand other links but didn't find answer.I tried to use countries.json : Added screenshotI don't have reputation 10 so I cannot add more than 2 links. I tried also create table : points,key=AL,name=Alabama,latitude=32.7990 longitude=-86.8073and in Worldmap selected for Location Data : table, for Table Label Field : points but still cannot see points.Could you please give an idea for any possible solutions : countries, states, geohash, json, jsonp or table to be able to see points for Worldmap Panel?Thank you

解决方案

The first thing I recognize with your table data is, that you provide the coordinates as latitude,longitude but you need to provide them as geohash.

As you are asking for any possible solution I am providing you my solution with influxdb:

1) Insert into influxdb:

curl -i -XPOST 'http://localhost:8086/write?db=mydb' --data-binary 'worldmap_test,host=server01,geohash=gbsuv7z value=1'

2) Set datasource in grafana to your influxdb database

3) Now in the worldmap panel set the created datasouce and use the following metric:

这篇关于具有Influxdb的Grafana世界地图面板不显示点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 00:23