influxdb-client 1.16.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +11 -2
- data/lib/influxdb2/client/flux_csv_parser.rb +8 -1
- data/lib/influxdb2/client/version.rb +1 -1
- data/test/influxdb/flux_csv_parser_test.rb +27 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b45b4e1aba281b91906e7aec477b1b0e4d96d8b19619f523646f82e84528b7a
|
4
|
+
data.tar.gz: bdc517dfa75b6605c509f89f95df9400c6a009f129b1d5f9bafe5757ba4d6f60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3913078eded2b90435abc49a6fd85ccdfac827c01c01d5ae38d37a0454e5b37a1315a7228221eb9966ace146df3fa3cb7ecb60af76e4fc0edbe5a6b995f8ebe
|
7
|
+
data.tar.gz: 18c86b9c78f939ba131bd23e40070104794659b1fd000b4fccc3bb892ce19b951f5d6ffc71beb56c11c96b56c0787233b06d8e3ed9e320ce2b1b4f8532be6147
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -26,6 +26,15 @@ This repository contains the reference Ruby client for the InfluxDB 2.0.
|
|
26
26
|
- [Contributing](#contributing)
|
27
27
|
- [License](#license)
|
28
28
|
|
29
|
+
## Documentation
|
30
|
+
|
31
|
+
This section contains links to the client library documentation.
|
32
|
+
|
33
|
+
* [Product documentation](https://docs.influxdata.com/influxdb/v2.0/api-guide/client-libraries/), [Getting Started](#installation)
|
34
|
+
* [Examples](examples)
|
35
|
+
* [API Reference](https://influxdata.github.io/influxdb-client-ruby/InfluxDB2.html)
|
36
|
+
* [Changelog](CHANGELOG.md)
|
37
|
+
|
29
38
|
## Features
|
30
39
|
|
31
40
|
InfluxDB 2.0 client consists of two packages
|
@@ -54,13 +63,13 @@ The client can be installed manually or with bundler.
|
|
54
63
|
To install the client gem manually:
|
55
64
|
|
56
65
|
```
|
57
|
-
gem install influxdb-client -v 1.
|
66
|
+
gem install influxdb-client -v 1.17.0
|
58
67
|
```
|
59
68
|
|
60
69
|
For management API:
|
61
70
|
|
62
71
|
```
|
63
|
-
gem install influxdb-client-apis -v 1.
|
72
|
+
gem install influxdb-client-apis -v 1.17.0
|
64
73
|
```
|
65
74
|
|
66
75
|
## Usage
|
@@ -240,7 +240,14 @@ module InfluxDB2
|
|
240
240
|
when 'unsignedLong', 'long', 'duration'
|
241
241
|
str_val.to_i
|
242
242
|
when 'double'
|
243
|
-
str_val
|
243
|
+
case str_val
|
244
|
+
when '+Inf'
|
245
|
+
Float::INFINITY
|
246
|
+
when '-Inf'
|
247
|
+
-Float::INFINITY
|
248
|
+
else
|
249
|
+
str_val.to_f
|
250
|
+
end
|
244
251
|
when 'base64Binary'
|
245
252
|
Base64.decode64(str_val)
|
246
253
|
when 'dateTime:RFC3339', 'dateTime:RFC3339Nano'
|
@@ -1,4 +1,4 @@
|
|
1
|
-
# The MIT
|
1
|
+
# The MIT
|
2
2
|
#
|
3
3
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
4
|
# of this software and associated documentation files (the "Software"), to deal
|
@@ -166,7 +166,7 @@ class FluxCsvParserTest < MiniTest::Test
|
|
166
166
|
"#default,mean,,,,,,,,,,,\n" \
|
167
167
|
",result,table,_start,_stop,_time,_value,_field,_measurement,language,license,name,owner\n" \
|
168
168
|
',,0,2020-11-02T07:29:49.55050738Z,2020-12-02T07:29:49.55050738Z,2020-11-02T09:00:00Z,9,' \
|
169
|
-
"stars,
|
169
|
+
"stars,gh,Ruby,MIT,influxdb-client-ruby,influxdata\n"
|
170
170
|
|
171
171
|
tables = InfluxDB2::FluxCsvParser.new(data).parse.tables
|
172
172
|
records = tables[0].records
|
@@ -464,4 +464,29 @@ class FluxCsvParserErrorTest < MiniTest::Test
|
|
464
464
|
assert_equal true, tables[0].columns[2].group
|
465
465
|
assert_equal 1, tables[1].records.size
|
466
466
|
end
|
467
|
+
|
468
|
+
def test_parse_infinity
|
469
|
+
data = '#group,false,false,true,true,true,true,true,true,true,true,false,false
|
470
|
+
#datatype,string,long,dateTime:RFC3339,dateTime:RFC3339,string,string,string,string,string,string,double,double
|
471
|
+
#default,_result,,,,,,,,,,,
|
472
|
+
,result,table,_start,_stop,_field,_measurement,language,license,name,owner,le,_value
|
473
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,0,0
|
474
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,10,0
|
475
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,20,0
|
476
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,30,0
|
477
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,40,0
|
478
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,50,0
|
479
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,60,0
|
480
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,70,0
|
481
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,80,0
|
482
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,90,0
|
483
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,+Inf,15
|
484
|
+
,,0,2021-06-23T06:50:11.897825012Z,2021-06-25T06:50:11.897825012Z,stars,gh,C#,MIT,ruby,influxdata,-Inf,15'
|
485
|
+
|
486
|
+
tables = InfluxDB2::FluxCsvParser.new(data).parse.tables
|
487
|
+
assert_equal 1, tables.size
|
488
|
+
assert_equal 12, tables[0].records.size
|
489
|
+
assert_equal tables[0].records[10].values['le'], Float::INFINITY
|
490
|
+
assert_equal tables[0].records[11].values['le'], -Float::INFINITY
|
491
|
+
end
|
467
492
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: influxdb-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakub Bednar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|