You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
## 2.4.0 [unreleased]
2
2
3
+
### Features
4
+
1.[#101](https://github.com/influxdata/influxdb-client-ruby/pull/101): Add `InvocableScriptsApi` to create, update, list, delete and invoke scripts by seamless way
This repository contains the reference Ruby client for the InfluxDB 2.0.
11
+
This repository contains the reference Ruby client for the InfluxDB 2.x.
12
12
13
13
#### Note: Use this client library with InfluxDB 2.x and InfluxDB 1.8+ ([see details](#influxdb-18-api-compatibility)). For connecting to InfluxDB 1.7 or earlier instances, use the [influxdb-ruby](https://github.com/influxdata/influxdb-ruby) client library.
14
14
@@ -31,22 +31,22 @@ This repository contains the reference Ruby client for the InfluxDB 2.0.
31
31
32
32
This section contains links to the client library documentation.
The [WriteApi](https://github.com/influxdata/influxdb-client-ruby/blob/master/lib/influxdb2/client/write_api.rb) supports synchronous and batching writes into InfluxDB 2.0. In default api uses synchronous write. To enable batching you can use WriteOption.
183
+
The [WriteApi](https://github.com/influxdata/influxdb-client-ruby/blob/master/lib/influxdb2/client/write_api.rb) supports synchronous and batching writes into InfluxDB 2.x. In default api uses synchronous write. To enable batching you can use WriteOption.
The [DeleteApi](https://github.com/influxdata/influxdb-client-ruby/blob/master/lib/influxdb2/client/delete_api.rb) supports deletes [points](https://v2.docs.influxdata.com/v2.0/reference/glossary/#point) from an InfluxDB bucket.
327
+
The [DeleteApi](https://github.com/influxdata/influxdb-client-ruby/blob/master/lib/influxdb2/client/delete_api.rb) supports deletes [points](https://docs.influxdata.com/influxdb/latest/reference/key-concepts/data-elements/#point) from an InfluxDB bucket.
The following example demonstrates how to use a InfluxDB 2.0 Management API to create new bucket. For further information see docs and [examples](/examples).
359
+
The following example demonstrates how to use a InfluxDB 2.x Management API to create new bucket. For further information see docs and [examples](/examples).
360
360
361
361
```ruby
362
362
#
@@ -427,7 +427,7 @@ client.close!
427
427
428
428
### Check the server status
429
429
430
-
Server availability can be checked using the `client.ping` method. That is equivalent of the [influx ping](https://v2.docs.influxdata.com/v2.0/reference/cli/influx/ping/).
430
+
Server availability can be checked using the `client.ping` method. That is equivalent of the [influx ping](https://docs.influxdata.com/influxdb/latest/reference/cli/influx/ping/).
431
431
432
432
### Proxy configuration
433
433
@@ -445,15 +445,15 @@ To overcome this limitation you have to set the client property `redirect_forwar
445
445
446
446
### InfluxDB 1.8 API compatibility
447
447
448
-
[InfluxDB 1.8.0 introduced forward compatibility APIs](https://docs.influxdata.com/influxdb/v1.8/tools/api/#influxdb-2-0-api-compatibility-endpoints) for InfluxDB 2.0. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.0 Cloud or open source.
448
+
[InfluxDB 1.8.0 introduced forward compatibility APIs](https://docs.influxdata.com/influxdb/v1.8/tools/api/#influxdb-2-0-api-compatibility-endpoints) for InfluxDB 2.x. This allow you to easily move from InfluxDB 1.x to InfluxDB 2.x Cloud or open source.
449
449
450
450
The following forward compatible APIs are available:
451
451
452
-
| API | Endpoint | Description |
453
-
|:----------|:----------|:----------|
454
-
|[query_api.rb](lib/influxdb2/client/query_api.rb)|[/api/v2/query](https://docs.influxdata.com/influxdb/latest/tools/api/#api-v2-query-http-endpoint)| Query data in InfluxDB 1.8.0+ using the InfluxDB 2.0 API and [Flux](https://docs.influxdata.com/flux/latest/)_(endpoint should be enabled by [`flux-enabled` option](https://docs.influxdata.com/influxdb/latest/administration/config/#flux-enabled-false))_|
455
-
|[write_api.rb](lib/influxdb2/client/write_api.rb)|[/api/v2/write](https://docs.influxdata.com/influxdb/latest/tools/api/#api-v2-write-http-endpoint)| Write data to InfluxDB 1.8.0+ using the InfluxDB 2.0 API |
456
-
|[health_api.rb](lib/influxdb2/client/health_api.rb)|[/health](https://docs.influxdata.com/influxdb/latest/tools/api/#health-http-endpoint)| Check the health of your InfluxDB instance |
|[query_api.rb](lib/influxdb2/client/query_api.rb)|[/api/v2/query](https://docs.influxdata.com/influxdb/latest/tools/api/#api-v2-query-http-endpoint)| Query data in InfluxDB 1.8.0+ using the InfluxDB 2.x API and [Flux](https://docs.influxdata.com/flux/latest/)_(endpoint should be enabled by [`flux-enabled` option](https://docs.influxdata.com/influxdb/latest/administration/config/#flux-enabled-false))_|
455
+
|[write_api.rb](lib/influxdb2/client/write_api.rb)|[/api/v2/write](https://docs.influxdata.com/influxdb/latest/tools/api/#api-v2-write-http-endpoint)| Write data to InfluxDB 1.8.0+ using the InfluxDB 2.x API|
456
+
|[health_api.rb](lib/influxdb2/client/health_api.rb)|[/health](https://docs.influxdata.com/influxdb/latest/tools/api/#health-http-endpoint)| Check the health of your InfluxDB instance |
457
457
458
458
For detail info see [InfluxDB 1.8 example](examples/influxdb_18_example.rb).
0 commit comments