fluent-plugin-influxdb 1.0.0.rc2 → 1.0.0.rc3
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/fluent-plugin-influxdb.gemspec +2 -2
- data/lib/fluent/plugin/out_influxdb.rb +2 -2
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae1802f54a5856dbc0031b63a33b07b7ee9659de
|
|
4
|
+
data.tar.gz: b733096cafaf78a9fbb2b0788fbe049d3803f172
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 015c9258e29a91f3aa6125a534c89f48e310618ed7db9aaf0252ab48487da4a345ab0de0902f179b53bc6362d54a980b413096618b597498229e53819918da07
|
|
7
|
+
data.tar.gz: 8193e4139b4b035b8ec4896565806ca183de846acc86597cf2be8e580228e96904b1d804106358db294a9a915fccd380fbe61650ef7d914733ae9a4c41279a59
|
|
@@ -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 = '1.0.0.
|
|
6
|
+
s.version = '1.0.0.rc3'
|
|
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}
|
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.require_paths = ["lib"]
|
|
18
18
|
|
|
19
19
|
s.add_runtime_dependency "fluentd", [">= 0.10.49", "< 2"]
|
|
20
|
-
s.add_runtime_dependency "influxdb", ">= 0.2.0"
|
|
20
|
+
s.add_runtime_dependency "influxdb", [">= 0.2.0", "< 0.4"]
|
|
21
21
|
|
|
22
22
|
s.add_development_dependency "rake"
|
|
23
23
|
s.add_development_dependency "pry"
|
|
@@ -75,7 +75,7 @@ DESC
|
|
|
75
75
|
def start
|
|
76
76
|
super
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
log.info "Connecting to database: #{@dbname}, host: #{@host}, port: #{@port}, username: #{@user}, use_ssl = #{@use_ssl}, verify_ssl = #{@verify_ssl}"
|
|
79
79
|
|
|
80
80
|
# ||= for testing.
|
|
81
81
|
@influxdb ||= InfluxDB::Client.new @dbname, hosts: @host.split(','),
|
|
@@ -94,7 +94,7 @@ DESC
|
|
|
94
94
|
raise Fluent::ConfigError, 'Database ' + @dbname + ' doesn\'t exist. Create it first, please. Existing databases: ' + existing_databases.join(',')
|
|
95
95
|
end
|
|
96
96
|
rescue InfluxDB::AuthenticationError, InfluxDB::Error
|
|
97
|
-
|
|
97
|
+
log.info "skip database presence check because '#{@user}' user doesn't have admin privilege. Check '#{@dbname}' exists on influxdb"
|
|
98
98
|
end
|
|
99
99
|
end
|
|
100
100
|
|
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: 1.0.0.
|
|
4
|
+
version: 1.0.0.rc3
|
|
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: 2017-
|
|
12
|
+
date: 2017-08-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|
|
@@ -38,6 +38,9 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 0.2.0
|
|
41
|
+
- - "<"
|
|
42
|
+
- !ruby/object:Gem::Version
|
|
43
|
+
version: '0.4'
|
|
41
44
|
type: :runtime
|
|
42
45
|
prerelease: false
|
|
43
46
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -45,6 +48,9 @@ dependencies:
|
|
|
45
48
|
- - ">="
|
|
46
49
|
- !ruby/object:Gem::Version
|
|
47
50
|
version: 0.2.0
|
|
51
|
+
- - "<"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0.4'
|
|
48
54
|
- !ruby/object:Gem::Dependency
|
|
49
55
|
name: rake
|
|
50
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -125,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
131
|
version: 1.3.1
|
|
126
132
|
requirements: []
|
|
127
133
|
rubyforge_project:
|
|
128
|
-
rubygems_version: 2.
|
|
134
|
+
rubygems_version: 2.6.11
|
|
129
135
|
signing_key:
|
|
130
136
|
specification_version: 4
|
|
131
137
|
summary: A buffered output plugin for fluentd and influxDB
|