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
The example from the Map function documentation needs to be updated to work with the new flux lib: https://v2.docs.influxdata.com/v2.0/reference/flux/functions/built-in/transformations/map/
The text was updated successfully, but these errors were encountered:
Ah, right. They removed the implicit column name mapping.
// This old syntax: map(fn: (r) => r._value * r._value) // Would get parsed as: map(fn: (r) => ({ r._value: r._value * r._value }))
Flux doesn't do this any more, so the example function should be updated to use the 2nd form above.
Sorry, something went wrong.
121watts
No branches or pull requests
The example from the Map function documentation needs to be updated to work with the new flux lib: https://v2.docs.influxdata.com/v2.0/reference/flux/functions/built-in/transformations/map/
The text was updated successfully, but these errors were encountered: