We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi!
My bucket contains measurements for latitude and longitude, but I cannot seem to group by and therefore no data displays on the plugin in grafana...
My query in flux is as follows:
from(bucket: "heartbeat") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r["_measurement"] == "measurement") |> filter(fn: (r) => r["_field"] == "latitude" or r["_field"] == "longitude") |> filter(fn: (r) => r["location"] == "v3p-bcs-54b20389fa62") |> aggregateWindow(every: v.windowPeriod, fn: last, createEmpty: false) |> yield(name: "last")
If I use another plugin like trackmap I can properly see the position, but I cannot seem to create the proper query using flux for worldmap...
trackmap
worldmap
Thanks!
The text was updated successfully, but these errors were encountered:
I think something is definitely broken somewhere. I've tried as well and i can't seem to get anything displayed. Also #295
In my case i have the following table
from(bucket: "npm-graf") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r["_measurement"] == "ReverseProxyConnections" and r["_field"] == "IP") |> group(columns: ["IP", "latitude", "longitude"], mode:"by") |> count(column: "_value")
and grafana is configured as such
but nothing is shown
Sorry, something went wrong.
Any help?
No branches or pull requests
Hi!
My bucket contains measurements for latitude and longitude, but I cannot seem to group by and therefore no data displays on the plugin in grafana...
My query in flux is as follows:
If I use another plugin like
trackmap
I can properly see the position, but I cannot seem to create the proper query using flux forworldmap
...Thanks!
The text was updated successfully, but these errors were encountered: