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
To reproduce
from(bucket: "_monitoring") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r._measurement == "statuses" and r._field == "_message") |> keep(columns: ["_time", "_value", "_check_id", "_check_name", "_level"]) |> window(every: 1s, timeColumn: "_time", startColumn: "_start", stopColumn: "_stop") |> group(columns: ["_start", "_stop"]) |> filter(fn: (r) => r["_check_id"] == "undefined") |> rename(columns: {"_time": "time", "_value": "message", "_check_id": "checkID", "_check_name": "checkName", "_level": "level"})
The text was updated successfully, but these errors were encountered:
It seems like it resets to the state of the query builder
Sorry, something went wrong.
This seems to have been broken with this PR:
#16226
On this line:
https://github.com/influxdata/influxdb/pull/16226/files#diff-afb81e9ccfb919d0134e48bd7176aa6bR770
Currently investigating why
asalem1
Successfully merging a pull request may close this issue.
To reproduce
The text was updated successfully, but these errors were encountered: