I am trying to use the Worlmap plugin of grafana. I have a ES entry which looks like this:
curl -u admin -XPUT "http://localhost:9200"/testmap -d'
{
"mappings": {
"typemap": {
"properties": {
"@location": {
"type": "geo_point"
}
}
}
}
}'
curl -u admin -XPUT "http://localhost:9200/testmap/typemap/1" -d'
{ "@timestamp": "2016-06-27T12:07:10+00:00",
"@hostname": "testhostt",
"load": 0.5,
"@location": "gbsuv7z"
}'
In grafana I have the following settings: But there are now points shown in the worldmap. I don´t get any error message either. I would be very happy if someone can point me to my problem here.