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 influxdb3 write and influxdb3 query commands should both support input via string, file, or stdin.
influxdb3 write
influxdb3 query
Currently, influxdb3 write only supports writing line protocol from a file. I would propose supporting all of the following:
# string $ influxdb3 write --database EXAMPLE_DB 'home,room=Living\ Room temp=21.1,hum=35.9,co=0i 1736841600' # file $ influxdb3 write --database EXAMPLE_DB --file /path/to/data.lp # stdin $ cat ./data.lp | influxdb3 write --database EXAMPLE_DB -
Current, the influxdb3 query command only lets you pass the query via a string argument. I would propose supporting all of the following:
# string $ influxdb3 query --database EXAMPLE_DB 'SELECT * FROM home' # file $ influxdb3 query --database EXAMPLE_DB --file /path/to/query.sql # stdin $ cat ./query.sql | influxdb3 query --database EXAMPLE_DB -
Use case: Adding this functionality would bring these commands closer to parity with influxctl write and influxctl query.
influxctl write
influxctl query
Proposal: Add support for string-, file-, and stdin-based input for influxdb3 write and influxdb3 query commands.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
influxdb3 write
andinfluxdb3 query
commands should both support input via string, file, or stdin.Currently,
influxdb3 write
only supports writing line protocol from a file. I would propose supporting all of the following:Current, the
influxdb3 query
command only lets you pass the query via a string argument. I would propose supporting all of the following:Use case:
Adding this functionality would bring these commands closer to parity with
influxctl write
andinfluxctl query
.Proposal:
Add support for string-, file-, and stdin-based input for
influxdb3 write
andinfluxdb3 query
commands.Related issues:
The text was updated successfully, but these errors were encountered: