First of all i am running a grafana cloud instance (version 8.5.2.) on my linux machine.
-
I want to implement a geomap-panel which shows me the location of my sensors and also translates the values which are measured into the size of the symbols.
-
Currently i have a influx database which i am querying via the flux syntax. My bucket structure is as followed:
- "example-bucket":
- _measurement : list of sensors
- _tags =(“Longitude”, “Latitude”): these two tags give me my geographical locations in a float format
- _field =(“measurementofthesensor”): this field shows the measurement of the specific sensor (f.ex. humidity => 30 %)
-
Right now if i click on the normal table view i dont even generate a table where these values are seperated. I only get my timestamp and a big string with all the tags and the according measurementofthesensor.
-
My question now would be how to query my tags and field so that i can select the values inside my worldmap-panel?
-
A question overall would be if you should query the long- and latitude as a tag or a field and the benefits of it ?