fluent-plugin-influxdb 0.2.3 → 0.2.4
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/History.md +5 -0
- data/README.md +2 -0
- data/fluent-plugin-influxdb.gemspec +1 -1
- data/lib/fluent/plugin/out_influxdb.rb +4 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fb64d01147c57b8d3ea6bafc973d053689c62f7
|
|
4
|
+
data.tar.gz: ddd20e12317330808ec2a1e35371313bf7978fad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bee1f8f0765b3a688b6efcd5ef57456017ae9db1004e217dab04df65cc33c700579e0e8084dc6d37f8487e44f7bb95f5e3d767c44f13fea73c71c1a59cf1e0ef
|
|
7
|
+
data.tar.gz: 93158c02a95768823c7a25fc0eebe05a4cc201f3f6d93a99f4a3f528a32622a1552ee941368679bbf6e980ab5915aee21121a715b0ef517c9e15b3a16f1d2730
|
data/History.md
CHANGED
data/README.md
CHANGED
|
@@ -35,6 +35,8 @@ Just like other regular output plugins, Use type `influxdb` in your fluentd conf
|
|
|
35
35
|
|
|
36
36
|
`use_ssl`: Use SSL when connecting to influxDB. default to false
|
|
37
37
|
|
|
38
|
+
`verify_ssl`: Enable/Disable SSL Certs verification when connecting to influxDB via SSL. default to true
|
|
39
|
+
|
|
38
40
|
`time_precision`: The time precision of timestamp. default to "s". should specify either hour (h), minutes (m), second (s), millisecond (ms), microsecond (u), or nanosecond (n)
|
|
39
41
|
|
|
40
42
|
`tag_keys`: The names of the keys to use as influxDB tags.
|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "fluent-plugin-influxdb"
|
|
6
|
-
s.version = '0.2.
|
|
6
|
+
s.version = '0.2.4'
|
|
7
7
|
s.authors = ["Masahiro Nakagawa", "FangLi"]
|
|
8
8
|
s.email = ["repeatedly@gmail.com", "surivlee@gmail.com"]
|
|
9
9
|
s.description = %q{InfluxDB output plugin for Fluentd}
|
|
@@ -28,6 +28,8 @@ millisecond (ms), microsecond (u), or nanosecond (n).
|
|
|
28
28
|
DESC
|
|
29
29
|
config_param :use_ssl, :bool, :default => false,
|
|
30
30
|
:desc => "Use SSL when connecting to influxDB."
|
|
31
|
+
config_param :verify_ssl, :bool, :default => true,
|
|
32
|
+
:desc => "Enable/Disable SSL Certs verification when connecting to influxDB via SSL."
|
|
31
33
|
config_param :tag_keys, :array, :default => [],
|
|
32
34
|
:desc => "The names of the keys to use as influxDB tags."
|
|
33
35
|
config_param :sequence_tag, :string, :default => nil,
|
|
@@ -51,7 +53,8 @@ DESC
|
|
|
51
53
|
password: @password,
|
|
52
54
|
async: false,
|
|
53
55
|
time_precision: @time_precision,
|
|
54
|
-
use_ssl: @use_ssl
|
|
56
|
+
use_ssl: @use_ssl,
|
|
57
|
+
verify_ssl: @verify_ssl
|
|
55
58
|
end
|
|
56
59
|
|
|
57
60
|
def start
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-influxdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masahiro Nakagawa
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-04-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|