influxdb-client-ruby icon indicating copy to clipboard operation
influxdb-client-ruby copied to clipboard

InfluxDB 2.0 Ruby Client

Results 7 influxdb-client-ruby issues
Sort by recently updated
recently updated
newest added

__Proposal:__ Since InfluxCloud Serverless prefers InfluxQL again it would be good if we can use this library to query it. __Current behavior:__ Currently non-flux queries throw errors. __Desired behavior:__ Non-flux...

__Steps to reproduce:__ Instantiate the session similarly to: ``` influxdb = InfluxDB2::Client.new("http://#{INFLUXDB_HOST}:8086", INFLUXDB_TOKEN, bucket: INFLUXDB_DATA, org: INFLUXDB_ORG, use_ssl: false, precision: InfluxDB2::WritePrecision::SECOND) write_options = InfluxDB2::WriteOptions.new(write_type: InfluxDB2::WriteType::BATCHING, batch_size: 100, flush_interval: 90_000, max_retries:...

Updates the requirements on [minitest](https://github.com/minitest/minitest) to permit the latest version. Changelog Sourced from minitest's changelog. === 5.25.4 / 2024-12-03 1 bug fix: Fix for must_verify definition if only requiring minitest/mock...

dependencies

Updates the requirements on [minitest](https://github.com/minitest/minitest) to permit the latest version. Changelog Sourced from minitest's changelog. === 5.24.1 / 2024-06-29 1 bug fix: Fix the error message when an extension is...

dependencies

Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. Changelog Sourced from rubocop's changelog. 0.93.1 (2020-10-12) Bug fixes #8782: Fix incorrect autocorrection for Style/TernaryParentheses with defined?. ([@​dvandersluis][]) #8867: Rework...

dependencies

## Summary We spotted what seems to be a memory leak in the gem, when sending lots of data to InfluxDB. ## Steps to reproduce 1. Leave the code running...

__Proposal:__ As suggest into the [best practices session](https://docs.influxdata.com/influxdb/v2/write-data/best-practices/optimize-writes/?t=Client+libraries#use-gzip-compression), I propose to add the gzip compression on the HTTP client __Current behavior:__ Now the HTTP request are not using the "Content-Encoding:...