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

Ruby client for InfluxDB

Results 14 influxdb-ruby issues
Sort by recently updated
recently updated
newest added

The v1 client libraries for InfluxDB were typically developed and maintained by community members. They have all now been succeeded by v2 client libraries developed and maintained by InfluxData in...

I'm guessing that happens (or doesn't happen) because of the `at_exit` block inside its constructor. I think it should either be reworked to use just one global `at_exit` somewhere on...

``` INFLUX.create_database("foo").body => "{\"results\":[{\"statement_id\":0,\"messages\":[{\"level\":\"warning\",\"text\":\"deprecated use of 'CREATE DATABASE foo' in a read only context, please use a POST request instead\"}]}]}\n" INFLUX.delete_database("foo").body => "{\"results\":[{\"statement_id\":0,\"messages\":[{\"level\":\"warning\",\"text\":\"deprecated use of 'DROP DATABASE foo' in a...

help-wanted

We pump megabytes of data into our influxDB every second, gzipping the requests would save on the bandwidth bill.

Performing a client query w/ Ruby warnings enabled and no params passed results in a warning from ruby re: an empty hash as right-hand argument to `%`: > vendor/ruby/2.7.0/gems/influxdb-0.8.1/lib/influxdb/query/builder.rb:12: warning:...

I've tried write some data by examples from README.md: ``` irb(main):032:0> data = [ irb(main):033:1* { irb(main):034:2* series: 'cpu', irb(main):035:2* tags: { host: 'server_1', region: 'us' }, irb(main):036:2* values: {...

My change in 24440f9b61e9333bcd2bdd81f24715b9f5c84dca wasn't fully correct See https://eregon.me/blog/2021/02/13/correct-delegation-in-ruby-2-27-3.html and https://github.com/ruby/ruby2_keywords/issues/6

the pr for this change is here: https://github.com/influxdata/influxdb/pull/19494