fluent-plugin-gcloud-pubsub-custom 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +9 -2
- data/fluent-plugin-gcloud-pubsub-custom.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83357d537f680aba22a540d6376fd49a9b573a40
|
4
|
+
data.tar.gz: 3d9184737d99e8ef792ec6d610a4da1ecd6a7c0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0660bd55e9c55f7569f45d895c1668c85f2ecc21751a5dda273dba76bc0d7be6518fd33ad1b5114e4d03a186af31345a043f179c079657742de7315493dc2072
|
7
|
+
data.tar.gz: 1a25fc5c381a8112e1bd9ed53cd7243a8838a15bcfbd2dfe6a75045e5096611b5bb222f7c009dcba896619a440cff98c6d4a77e65838e88c44a989c55a87a5be
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -19,6 +19,13 @@ This plugin is forked from https://github.com/mdoi/fluent-plugin-gcloud-pubsub
|
|
19
19
|
- Add a pull style subscription to the topic
|
20
20
|
- Download your credential (json) or [set scope on GCE instance](https://cloud.google.com/compute/docs/api/how-tos/authorization)
|
21
21
|
|
22
|
+
## Requirements
|
23
|
+
|
24
|
+
| fluent-plugin-gcloud-pubsub-custom | fluentd | ruby |
|
25
|
+
|------------------------|---------|------|
|
26
|
+
| >= 1.0.0 | >= v0.14.0 | >= 2.1 |
|
27
|
+
| < 1.0.0 | >= v0.12.0 | >= 1.9 |
|
28
|
+
|
22
29
|
## Installation
|
23
30
|
|
24
31
|
Install by gem:
|
@@ -124,9 +131,9 @@ Use `gcloud_pubsub` input plugin.
|
|
124
131
|
- `subscription` (required)
|
125
132
|
- Set subscription name to pull.
|
126
133
|
- `max_messages` (optional, default: `100`)
|
127
|
-
- See maxMessages on https://cloud.google.com/pubsub/
|
134
|
+
- See maxMessages on https://cloud.google.com/pubsub/docs/reference/rest/v1/projects.subscriptions/pull
|
128
135
|
- `return_immediately` (optional, default: `true`)
|
129
|
-
- See returnImmediately on https://cloud.google.com/pubsub/
|
136
|
+
- See returnImmediately on https://cloud.google.com/pubsub/docs/reference/rest/v1/projects.subscriptions/pull
|
130
137
|
- If `return_immediately` is `true` or pulling message is stopped by HTTP RPC, this plugin wait `pull_interval` each pull.
|
131
138
|
- `pull_interval` (optional, default: `5.0`)
|
132
139
|
- Pulling messages by intervals of specified seconds.
|
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.license = "MIT"
|
8
8
|
gem.homepage = "https://github.com/mia-0032/fluent-plugin-gcloud-pubsub-custom"
|
9
9
|
gem.summary = gem.description
|
10
|
-
gem.version = "1.0.
|
10
|
+
gem.version = "1.0.1"
|
11
11
|
gem.authors = ["Yoshihiro MIYAI"]
|
12
12
|
gem.email = "msparrow17@gmail.com"
|
13
13
|
gem.has_rdoc = false
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
|
|
17
17
|
gem.require_paths = ['lib']
|
18
18
|
|
19
19
|
gem.add_runtime_dependency "fluentd", [">= 0.14.15", "< 2"]
|
20
|
-
gem.add_runtime_dependency "google-cloud-pubsub", "~> 0.
|
20
|
+
gem.add_runtime_dependency "google-cloud-pubsub", "~> 0.26.0"
|
21
21
|
gem.add_runtime_dependency "retryable", "~> 2.0"
|
22
22
|
|
23
23
|
gem.add_development_dependency "bundler"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-gcloud-pubsub-custom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yoshihiro MIYAI
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fluentd
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.
|
39
|
+
version: 0.26.0
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 0.
|
46
|
+
version: 0.26.0
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: retryable
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
154
154
|
version: '0'
|
155
155
|
requirements: []
|
156
156
|
rubyforge_project:
|
157
|
-
rubygems_version: 2.
|
157
|
+
rubygems_version: 2.6.13
|
158
158
|
signing_key:
|
159
159
|
specification_version: 4
|
160
160
|
summary: Google Cloud Pub/Sub input/output plugin for Fluentd event collector
|