logstash-output-lumberjack 3.1.8 → 3.1.9
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/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +6 -2
- data/logstash-output-lumberjack.gemspec +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f3343898047576ce65b0ead4fb23228359defdad580ba221b4a0921fd6ec7a9
|
|
4
|
+
data.tar.gz: 77646b5757ddc4d0edd1ba998c00c9d3f16fa1172e463d997067da164414080c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 168cd8b8716641d08cc17229aa5c1911e5e730ceebdebced88da7294b0b6f0b621b2887c07e581cf850c880904e1c519861ad34d5a0101632f50ed3f2efb1f3e
|
|
7
|
+
data.tar.gz: 14cc7e004229a55c46f817645bf6a3de329d2db27115e2050363952dc123faa63df20986ecd24f25c59d395be59de3ed336bb011d8491c5d9457f219b924c6de
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.1.9
|
|
2
|
+
- Docs: specified the policity selection of host from `hosts` setting [32](https://github.com/logstash-plugins/logstash-output-lumberjack/pull/32)
|
|
3
|
+
|
|
1
4
|
## 3.1.8
|
|
2
5
|
- Fix: dropped usage of SHUTDOWN event deprecated since Logstash 5.0 [#31](https://github.com/logstash-plugins/logstash-output-lumberjack/pull/31)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -61,7 +61,11 @@ send them to the logstash server.
|
|
|
61
61
|
* Value type is <<array,array>>
|
|
62
62
|
* There is no default value for this setting.
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
List of addresses lumberjack can send to. When the plugin needs to connect to the remote
|
|
65
|
+
peer, it randomly selects one of the hosts.
|
|
66
|
+
|
|
67
|
+
When the plugin is registered, it opens a connection to one of the hosts.
|
|
68
|
+
If the plugin detects a connection error, it selects a different host from the list and opens a new connection.
|
|
65
69
|
|
|
66
70
|
[id="plugins-{type}s-{plugin}-idle_flush_time"]
|
|
67
71
|
===== `idle_flush_time`
|
|
@@ -102,4 +106,4 @@ ssl certificate to use
|
|
|
102
106
|
[id="plugins-{type}s-{plugin}-common-options"]
|
|
103
107
|
include::{include_path}/{type}.asciidoc[]
|
|
104
108
|
|
|
105
|
-
:default_codec!:
|
|
109
|
+
:default_codec!:
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-lumberjack'
|
|
4
|
-
s.version = '3.1.
|
|
4
|
+
s.version = '3.1.9'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Sends events using the `lumberjack` protocol"
|
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-lumberjack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -139,8 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
139
139
|
- !ruby/object:Gem::Version
|
|
140
140
|
version: '0'
|
|
141
141
|
requirements: []
|
|
142
|
-
|
|
143
|
-
rubygems_version: 2.6.13
|
|
142
|
+
rubygems_version: 3.1.6
|
|
144
143
|
signing_key:
|
|
145
144
|
specification_version: 4
|
|
146
145
|
summary: Sends events using the `lumberjack` protocol
|