influxdb-rust
                                
                                 influxdb-rust copied to clipboard
                                
                                    influxdb-rust copied to clipboard
                            
                            
                            
                        Rust Client for the InfluxDB Time Series Database
I think it could be good to separate influx db line protocol. It could be shared between clients. I have found: - [influxdbv2](https://github.com/xoac/influxdb2) - [telegraf](https://github.com/maxmindlin/telegraf-rust)/ - this crate - more...
Add [Write consistency](https://docs.influxdata.com/enterprise_influxdb/v1/concepts/clustering/#write-consistency) parameter to support InfluxDB Enterprise. For the go client library it was a small change: https://github.com/influxdata/influxdb-client-go/pull/348/files#diff-27816c8e9d4abdc1d7aa91a3b3298b2b37afcfd60dc9094d47e2f4d58d05c74a
## Description Added the ability to add a retention policy to the client parameters. Mainly for v2 compatibility, which uses the retention policy to map to bucket names https://docs.influxdata.com/influxdb/v2/reference/api/influxdb-1x/dbrp/ ###...
Nothing matching this error in the issues that I've seen. - Rust Version: stable-x86_64-unknown-linux-gnu (default) rustc 1.74.0 (79e9716c9 2023-11-13) - Runtime version (e.g. Tokio): tokio = { version = "1.29.1",...
This should be done to avoid further problems like #121. Test should be added both for v1 to ensure it is formatted as a signed integer and for v2 (compat...
According to [Use gzip compression](https://docs.influxdata.com/influxdb/v2.6/write-data/best-practices/optimize-writes/#use-gzip-compression), `influxdb` supports `gzip` compression. I think that `influxdb-rust` should support this. ```rust //... let enable_gzip = true; let client = Client::new("http://localhost:8086", "test", enable_gzip); //... ```...
I needed to have a working send-only system to run in an ESP32-Environment. I just wanted to share my code with you, maybe it helps in one way or an...
surf support is outdated and surf is no longer maintained. It should be removed from this crate. ORIGINAL ISSUE TEXT: The `surf` crate has not only seen no releases in...
In #150 error types were adapted, however it would be good to adapt the errors even further to include the error string returned from the InfluxDB API. Such an error...