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
Missing support for parametrized flux queries which influxdb api supports
We should ideally be able to write a parametrized flux query like below:
query = """ from(bucket: params.bucket) |> range(start: #{range.from}T04:00:00.000Z, stop: #{range.to}T03:59:00.000Z) |> filter(fn: (r) => r._measurement == params.series) |> pivot(rowKey:["_time"], columnKey: ["_field"], valueColumn: "_value") |> group() |> map(fn: (r) => ({ r with _value: 1 })) |> count() """ InfluxConnection.query(query, params: %{bucket: "test", series: "series"})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Missing support for parametrized flux queries which influxdb api supports
We should ideally be able to write a parametrized flux query like below:
The text was updated successfully, but these errors were encountered: