fluent-plugin-google-cloud 0.5.5.pre.2 → 0.5.6
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a79a5500d054c7b1f028bf611a307ad7a369782e
|
|
4
|
+
data.tar.gz: 6bd1033baf1f06bcffcddf1e2895a8dc89b7179d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e926b8821174d19ba9341377d97a31a862021add5f51c0aee4e95d0f93e942920c1734bae2303e1b03c98c6b113f647b54c73ca6774f27a36a241dba5cc3820f
|
|
7
|
+
data.tar.gz: 101cdbaee99db245388604f98f52d204b4982b7f56939f26c5c1d04dc58043b4f39d36602f87aeb17a992d141a00f13eb4f8b789a5417d20a5d64c58903610b5
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
fluent-plugin-google-cloud (0.5.
|
|
4
|
+
fluent-plugin-google-cloud (0.5.6)
|
|
5
5
|
fluentd (~> 0.10)
|
|
6
|
-
google-api-client (
|
|
6
|
+
google-api-client (~> 0.9.0)
|
|
7
7
|
googleapis-common-protos (~> 1.3)
|
|
8
8
|
googleauth (~> 0.4)
|
|
9
9
|
grpc (~> 1.0)
|
|
@@ -41,7 +41,7 @@ GEM
|
|
|
41
41
|
mime-types (>= 1.6)
|
|
42
42
|
representable (~> 2.3.0)
|
|
43
43
|
retriable (~> 2.0)
|
|
44
|
-
google-protobuf (3.0
|
|
44
|
+
google-protobuf (3.2.0)
|
|
45
45
|
googleapis-common-protos (1.3.4)
|
|
46
46
|
google-protobuf (~> 3.0)
|
|
47
47
|
grpc (~> 1.0)
|
|
@@ -53,8 +53,8 @@ GEM
|
|
|
53
53
|
multi_json (~> 1.11)
|
|
54
54
|
os (~> 0.9)
|
|
55
55
|
signet (~> 0.7)
|
|
56
|
-
grpc (1.
|
|
57
|
-
google-protobuf (~> 3.
|
|
56
|
+
grpc (1.1.2)
|
|
57
|
+
google-protobuf (~> 3.1)
|
|
58
58
|
googleauth (~> 0.5.1)
|
|
59
59
|
hashdiff (0.3.2)
|
|
60
60
|
http_parser.rb (0.6.0)
|
|
@@ -132,4 +132,4 @@ DEPENDENCIES
|
|
|
132
132
|
webmock (~> 1.17)
|
|
133
133
|
|
|
134
134
|
BUNDLED WITH
|
|
135
|
-
1.14.
|
|
135
|
+
1.14.4
|
|
@@ -10,7 +10,7 @@ eos
|
|
|
10
10
|
gem.homepage = \
|
|
11
11
|
'https://github.com/GoogleCloudPlatform/fluent-plugin-google-cloud'
|
|
12
12
|
gem.license = 'Apache-2.0'
|
|
13
|
-
gem.version = '0.5.
|
|
13
|
+
gem.version = '0.5.6'
|
|
14
14
|
gem.authors = ['Todd Derr', 'Alex Robinson']
|
|
15
15
|
gem.email = ['salty@google.com']
|
|
16
16
|
gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
|
|
@@ -21,7 +21,7 @@ eos
|
|
|
21
21
|
|
|
22
22
|
gem.add_runtime_dependency 'fluentd', '~> 0.10'
|
|
23
23
|
gem.add_runtime_dependency 'googleapis-common-protos', '~> 1.3'
|
|
24
|
-
gem.add_runtime_dependency 'google-api-client', '
|
|
24
|
+
gem.add_runtime_dependency 'google-api-client', '~> 0.9.0'
|
|
25
25
|
gem.add_runtime_dependency 'googleauth', '~> 0.4'
|
|
26
26
|
gem.add_runtime_dependency 'grpc', '~> 1.0'
|
|
27
27
|
gem.add_runtime_dependency 'json', '~> 1.8'
|
|
@@ -39,7 +39,7 @@ module Fluent
|
|
|
39
39
|
Fluent::Plugin.register_output('google_cloud', self)
|
|
40
40
|
|
|
41
41
|
PLUGIN_NAME = 'Fluentd Google Cloud Logging plugin'
|
|
42
|
-
PLUGIN_VERSION = '0.5.
|
|
42
|
+
PLUGIN_VERSION = '0.5.6'
|
|
43
43
|
|
|
44
44
|
# Constants for service names.
|
|
45
45
|
APPENGINE_SERVICE = 'appengine.googleapis.com'
|
|
@@ -59,8 +59,8 @@ class GoogleCloudOutputGRPCTest < Test::Unit::TestCase
|
|
|
59
59
|
d.emit('message' => log_entry(0))
|
|
60
60
|
begin
|
|
61
61
|
d.run
|
|
62
|
-
rescue GRPC::Cancelled
|
|
63
|
-
|
|
62
|
+
rescue GRPC::Cancelled
|
|
63
|
+
# No need to check the message -- we already know the code.
|
|
64
64
|
exception_count += 1
|
|
65
65
|
rescue GRPC::BadStatus => error
|
|
66
66
|
assert_equal "#{code}:#{message}", error.message
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-google-cloud
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Todd Derr
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-02-
|
|
12
|
+
date: 2017-02-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: fluentd
|
|
@@ -43,16 +43,16 @@ dependencies:
|
|
|
43
43
|
name: google-api-client
|
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
|
45
45
|
requirements:
|
|
46
|
-
- - "
|
|
46
|
+
- - "~>"
|
|
47
47
|
- !ruby/object:Gem::Version
|
|
48
|
-
version:
|
|
48
|
+
version: 0.9.0
|
|
49
49
|
type: :runtime
|
|
50
50
|
prerelease: false
|
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
52
|
requirements:
|
|
53
|
-
- - "
|
|
53
|
+
- - "~>"
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
|
-
version:
|
|
55
|
+
version: 0.9.0
|
|
56
56
|
- !ruby/object:Gem::Dependency
|
|
57
57
|
name: googleauth
|
|
58
58
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -212,9 +212,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
212
212
|
version: '2.0'
|
|
213
213
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
214
214
|
requirements:
|
|
215
|
-
- - "
|
|
215
|
+
- - ">="
|
|
216
216
|
- !ruby/object:Gem::Version
|
|
217
|
-
version:
|
|
217
|
+
version: '0'
|
|
218
218
|
requirements: []
|
|
219
219
|
rubyforge_project:
|
|
220
220
|
rubygems_version: 2.4.8
|