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
Build Nightly Build Time 2019-03-24T07:16:22Z
ts=2019-03-25T09:24:59.565349Z lvl=info msg="Welcome to InfluxDB" log_id=0EP2WtBG000 version=nightly commit=68400504a build_date=2019-03-24T07:16:22Z
Use Case
After starting up the quay.io docker image, onboarding and adding some test data or a telegraf connection
sample query:
from(bucket: "test-data") |> range(start: v.timeRangeStart, stop: v.timeRangeStop) |> filter(fn: (r) => r._measurement == "air_quality") |> filter(fn: (r) => r._field == "humidity") |> filter(fn: (r) => r.city == "Praha") |> map(fn: (r) => ({_time: r._time, _measurement: r._measurement, _field: r._field, _value: 100.0 - r._value}), mergeKey: true) |> shift(shift: -4h, columns: ["_start", "_stop", "_time"])
The server returns a message in the view area:
"Error: failed to compile query: type error 7:6-7:11: undefined identifier "shift""
After checking the flux repository I see shift has been refactored to timeShift. Making this change in the script makes it work again.
Expected Behavior
That deprecated functions should not appear in the list and that their refactored names and signatures should be used instead.
Screenshots
The text was updated successfully, but these errors were encountered:
ischolten
No branches or pull requests
Build Nightly
Build Time 2019-03-24T07:16:22Z
Use Case
After starting up the quay.io docker image, onboarding and adding some test data or a telegraf connection
sample query:
The server returns a message in the view area:
"Error: failed to compile query: type error 7:6-7:11: undefined identifier "shift""
After checking the flux repository I see shift has been refactored to timeShift. Making this change in the script makes it work again.
Expected Behavior
That deprecated functions should not appear in the list and that their refactored names and signatures should be used instead.
Screenshots
The text was updated successfully, but these errors were encountered: