logstash-output-http 4.3.2 → 4.3.4
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 +9 -0
- data/docs/index.asciidoc +13 -11
- data/logstash-output-http.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 552c935bfba4ce2b39fab312dc332b256d1bbbac
|
4
|
+
data.tar.gz: 7473f46536a588c957d535763ef9ecaf4e983b8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69cd49fc387bc58253f2be4b49baf555d6e9bffb3be68d4872cea6a758b1a6c7bab42dac33e8215b730429358cd375119e6d86a5b30843755ce7984452f9e3c9
|
7
|
+
data.tar.gz: f7706a95f8849e6b96152a216322f4c07f81668ef2c40e4b9ac0bb9fe962d17f5a9923e0d6e8f319fdcfa0350efac6c4985f292853b79e26d11325fc86615616
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## 4.3.4
|
2
|
+
- Docs fixes
|
3
|
+
|
4
|
+
## 4.3.3
|
5
|
+
- Docs: Add plugin description.
|
6
|
+
|
7
|
+
## 4.3.2
|
8
|
+
- Docs: Update plugin title.
|
9
|
+
|
1
10
|
## 4.3.1
|
2
11
|
- Fix deadlock that could occur in certain situations. All users should upgrade to the latest version.
|
3
12
|
This deadlock was caused by certain async HTTP APIs being called out of order thus creating a race.
|
data/docs/index.asciidoc
CHANGED
@@ -18,6 +18,18 @@ END - GENERATED VARIABLES, DO NOT EDIT!
|
|
18
18
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
20
20
|
|
21
|
+
==== Description
|
22
|
+
|
23
|
+
This output lets you send events to a generic HTTP(S) endpoint.
|
24
|
+
|
25
|
+
This output will execute up to 'pool_max' requests in parallel for performance.
|
26
|
+
Consider this when tuning this plugin for performance.
|
27
|
+
|
28
|
+
Additionally, note that when parallel execution is used strict ordering of events is not
|
29
|
+
guaranteed!
|
30
|
+
|
31
|
+
Beware, this gem does not yet support codecs. Please use the 'format' option for now.
|
32
|
+
|
21
33
|
[id="plugins-{type}s-{plugin}-options"]
|
22
34
|
==== Http Output Configuration Options
|
23
35
|
|
@@ -347,16 +359,6 @@ Specify the truststore type here. One of `JKS` or `PKCS12`. Default is `JKS`
|
|
347
359
|
* Value type is <<string,string>>
|
348
360
|
* There is no default value for this setting.
|
349
361
|
|
350
|
-
This output lets you send events to a
|
351
|
-
generic HTTP(S) endpoint
|
352
|
-
|
353
|
-
This output will execute up to 'pool_max' requests in parallel for performance.
|
354
|
-
Consider this when tuning this plugin for performance.
|
355
|
-
|
356
|
-
Additionally, note that when parallel execution is used strict ordering of events is not
|
357
|
-
guaranteed!
|
358
|
-
|
359
|
-
Beware, this gem does not yet support codecs. Please use the 'format' option for now.
|
360
362
|
URL to use
|
361
363
|
|
362
364
|
[id="plugins-{type}s-{plugin}-validate_after_inactivity"]
|
@@ -366,7 +368,7 @@ URL to use
|
|
366
368
|
* Default value is `200`
|
367
369
|
|
368
370
|
How long to wait before checking if the connection is stale before executing a request on a connection using keepalive.
|
369
|
-
|
371
|
+
You may want to set this lower, possibly to 0 if you get connection errors regularly
|
370
372
|
Quoting the Apache commons docs (this client is based Apache Commmons):
|
371
373
|
'Defines period of inactivity in milliseconds after which persistent connections must be re-validated prior to being leased to the consumer. Non-positive value passed to this method disables connection validation. This check helps detect connections that have become stale (half-closed) while kept inactive in the pool.'
|
372
374
|
See https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[these docs for more info]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-http'
|
3
|
-
s.version = '4.3.
|
3
|
+
s.version = '4.3.4'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint"
|
6
6
|
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-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.3.
|
4
|
+
version: 4.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|