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
when an influxdb flux query is used to feed data to the worldmap panel, it works fine (worldmap plugin uses the default configuration).
but, when i select a timerange where there is no data (so the flux query returns no data), the worldmap-plugin produces this error message:
Data error TypeError: Cannot read property 'length' of undefined
the flux-data response contains one empty dataframe, and this seems to be the source of the problem.
to test this, just use a flux-query that returns no data, like:
from(bucket: "mybucket") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r["_measurement"] == "cpu") |> filter(fn: (r) => r["_field"] == "usage_idle") |> filter(fn: (r) => false)
The text was updated successfully, but these errors were encountered:
the issue originally reported in the grafana repo: grafana/grafana#30290
Sorry, something went wrong.
No branches or pull requests
when an influxdb flux query is used to feed data to the worldmap panel, it works fine (worldmap plugin uses the default configuration).
but, when i select a timerange where there is no data (so the flux query returns no data), the worldmap-plugin produces this error message:
the flux-data response contains one empty dataframe, and this seems to be the source of the problem.
to test this, just use a flux-query that returns no data, like:
The text was updated successfully, but these errors were encountered: