logstash-output-google_pubsub 1.0.1-java → 1.0.2-java
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd3464687faf3f3b9354b5a5ad01cd5a664dd736ad539947ca659c426191ff98
|
|
4
|
+
data.tar.gz: 691fe3c1489a6772ea4acf3cfb3f12894e38d458dc04b21a51a8142227b688a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24820e3b5f5d26e674b8b7bcb3dadff68aa4acb40617106e874ce5d033389c376b2a7b055e5c4b3fda508f9957acb81de461084d428d882ff0afc64a5d7f19fd
|
|
7
|
+
data.tar.gz: 5aa586a49c0fbbdfb658f42a5f07cda54cde9af8a0f8710a01c68856036fc03aff0043e16f4e47dd601b2a47ee8c8b7f074eab838dabd596a7273e7fc2df47fc
|
data/docs/index.asciidoc
CHANGED
|
@@ -78,9 +78,9 @@ output {
|
|
|
78
78
|
json_key_file => "service_account_key.json"
|
|
79
79
|
|
|
80
80
|
# Options for configuring the upload
|
|
81
|
-
message_count_threshold =>
|
|
81
|
+
message_count_threshold => 1000
|
|
82
82
|
delay_threshold_secs => 10
|
|
83
|
-
request_byte_threshold =>
|
|
83
|
+
request_byte_threshold => 5000000
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
------------------------------------------------------------------------------
|
|
@@ -209,7 +209,7 @@ A value of 0 will cause messages to instantly be sent but will reduce total thro
|
|
|
209
209
|
===== `request_byte_threshold`
|
|
210
210
|
|
|
211
211
|
* Value type is <<bytes,bytes>>
|
|
212
|
-
* Default is: `
|
|
212
|
+
* Default is: `1000000`
|
|
213
213
|
|
|
214
214
|
Once the number of bytes in the batched request reaches this threshold, send all of the messages in
|
|
215
215
|
a single call, even if neither the delay or message count thresholds have been exceeded yet.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-google_pubsub'
|
|
3
|
-
s.version = '1.0.
|
|
3
|
+
s.version = '1.0.2'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = 'Emit output messages to Google Pubsub topic.'
|
|
6
6
|
s.description = 'This gem is a Logstash output plugin to be installed on top of the Logstash'\
|
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
|
|
|
29
29
|
s.add_development_dependency 'logstash-devutils', '~> 1.3'
|
|
30
30
|
|
|
31
31
|
# JARs
|
|
32
|
-
s.add_development_dependency 'jar-dependencies', '~> 0.
|
|
32
|
+
s.add_development_dependency 'jar-dependencies', '~> 0.4.0'
|
|
33
33
|
|
|
34
34
|
s.platform = 'java'
|
|
35
35
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-google_pubsub
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Johnson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -77,7 +77,7 @@ dependencies:
|
|
|
77
77
|
requirements:
|
|
78
78
|
- - "~>"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 0.
|
|
80
|
+
version: 0.4.0
|
|
81
81
|
name: jar-dependencies
|
|
82
82
|
prerelease: false
|
|
83
83
|
type: :development
|
|
@@ -85,7 +85,7 @@ dependencies:
|
|
|
85
85
|
requirements:
|
|
86
86
|
- - "~>"
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 0.
|
|
88
|
+
version: 0.4.0
|
|
89
89
|
description: This gem is a Logstash output plugin to be installed on top of the Logstashcore
|
|
90
90
|
pipeline using $LS_HOME/bin/logstash-plugin install gemname.This gem is not a stand-alone
|
|
91
91
|
program.
|