You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as a user, i would like to use the influx query command to dump data from one bucket and load it into another. right now, the influx query command formats the output to display in the terminal, with no option to write the raw flux response.
the influx write -f export.csv command expects the raw annotated csv returned by the /query api.
Adding an option to print the raw flux response would allow users to run the following commands:
After this issue is complete, we should be able to do something like this: influx query --raw 'from(bucket: "telegraf") |> range(start: -1h)' | influx write -b new_bucket --format csv
I'm not sure if there should be a way to specify the annotations as part of this or not. i think the default should include group, datatype, and default though.
as a user, i would like to use the
influx query
command to dump data from one bucket and load it into another. right now, theinflux query
command formats the output to display in the terminal, with no option to write the raw flux response.the
influx write -f export.csv
command expects the raw annotated csv returned by the/query
api.Adding an option to print the raw flux response would allow users to run the following commands:
The text was updated successfully, but these errors were encountered: