influxdb/influxdb_iox_client
Fraser Savage 2a396c1b73
feat(cli): Add `table list <DATABASE>` command
This commit hooks the influxdb_iox_client and CLI up to the new
`GetTables` gRPC endpoint on the `TableService`, allowing users to
query a list of tables within a database and consequently see any
custom partitioning schemes.
2023-08-31 16:47:09 +01:00
..
src feat(cli): Add `table list <DATABASE>` command 2023-08-31 16:47:09 +01:00
Cargo.toml chore(deps): Bump thiserror from 1.0.46 to 1.0.47 (#8519) 2023-08-18 09:02:48 +00:00
README.md fix: default the write cli comment to the http default port. (#7394) 2023-03-31 14:59:24 +00:00

README.md

InfluxDB IOx Client

This is the Rust client library for connecting to InfluxDB IOx.

We're attempting to support all apis as they are added and modified but this client is likely not 100% complete at any time.

Some apis are http (for instance the write) and some are gRPC. See the individual client modules for details.

Example: Using the Write Client

To write to IOx, create a connection and a write client, and then send line protocol. Please see the example on 'Client' struct that will work when running against all-in-one mode.