fluent-plugin-influxdb 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c18eeb3df6edb6a13fd2c1bfb2297627b8523fd5
4
- data.tar.gz: 684d18b8d759cb69474274f1346fff726591667b
3
+ metadata.gz: 0fb64d01147c57b8d3ea6bafc973d053689c62f7
4
+ data.tar.gz: ddd20e12317330808ec2a1e35371313bf7978fad
5
5
  SHA512:
6
- metadata.gz: 9479f05a97776e1d6e210212c05bb4e4c741a4362d157cf14007b913ad0bd7857152bca5297ea2f3974c77b118fdb25f1b164a542a308bb1a31b5ebd0df02398
7
- data.tar.gz: d801c178625d67e10514679190e43aa4700f83858f34b122c6e8cd871fe4669d1101ed47489bc3dca56e9d799c6b7311717395b2ba41e9a63a35b6dce571990f
6
+ metadata.gz: bee1f8f0765b3a688b6efcd5ef57456017ae9db1004e217dab04df65cc33c700579e0e8084dc6d37f8487e44f7bb95f5e3d767c44f13fea73c71c1a59cf1e0ef
7
+ data.tar.gz: 93158c02a95768823c7a25fc0eebe05a4cc201f3f6d93a99f4a3f528a32622a1552ee941368679bbf6e980ab5915aee21121a715b0ef517c9e15b3a16f1d2730
data/History.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 0.2.4 (Apr, 11, 2016)
5
+ =====
6
+
7
+ - Add verify_ssl option
8
+
4
9
  0.2.3 (Feb, 27, 2016)
5
10
  =====
6
11
 
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.3'
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.3
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-02-27 00:00:00.000000000 Z
12
+ date: 2016-04-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd