logstash-input-http_poller 5.0.0 → 5.0.1
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 +10 -7
- data/logstash-input-http_poller.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25cfbb3da58886a59098ad1df73d19209dbc497a31566d6fe800ed7d6b14b83d
|
|
4
|
+
data.tar.gz: 9be5d6ef406f2912c74d30efc800793c01ef0fa67301e786298b54bbafcb30f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d1b6f1165a6d15f7ec692820c769e29ad2be9924252ae4274a348db43ce82ac4046199ebbc8cae84058e8fc21806dcc4874e020cbee11c5eaf11806c60bfe24b
|
|
7
|
+
data.tar.gz: 76bf3600e28dea4e6a8418a7285fb5f47e5301629bb4648c53fc897db7b5288f1da900707f36feccd81a8f6d951bc64140129e1cd70a623e5789ad7334918db0
|
data/CHANGELOG.md
CHANGED
data/docs/index.asciidoc
CHANGED
|
@@ -365,15 +365,18 @@ The name and the url will be passed in the outputed event
|
|
|
365
365
|
* Value type is <<number,number>>
|
|
366
366
|
* Default value is `200`
|
|
367
367
|
|
|
368
|
-
How long to wait before checking
|
|
369
|
-
|
|
370
|
-
Quoting the Apache commons docs (this client is based Apache Commmons):
|
|
371
|
-
'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
|
-
See https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[these docs for more info]
|
|
373
|
-
|
|
368
|
+
How long to wait before checking for a stale connection to determine if a keepalive request is needed.
|
|
369
|
+
Consider setting this value lower than the default, possibly to 0, if you get connection errors regularly.
|
|
374
370
|
|
|
371
|
+
This client is based on Apache Commons' HTTP implementation. Here's how the
|
|
372
|
+
https://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[Apache
|
|
373
|
+
Commons documentation] describes this option: "Defines period of inactivity in
|
|
374
|
+
milliseconds after which persistent connections must be re-validated prior to
|
|
375
|
+
being leased to the consumer. Non-positive value passed to this method disables
|
|
376
|
+
connection validation. This check helps detect connections that have become
|
|
377
|
+
stale (half-closed) while kept inactive in the pool."
|
|
375
378
|
|
|
376
379
|
[id="plugins-{type}s-{plugin}-common-options"]
|
|
377
380
|
include::{include_path}/{type}.asciidoc[]
|
|
378
381
|
|
|
379
|
-
:default_codec!:
|
|
382
|
+
:default_codec!:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-http_poller'
|
|
3
|
-
s.version = '5.0.
|
|
3
|
+
s.version = '5.0.1'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Decodes the output of an HTTP API into events"
|
|
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,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-http_poller
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
12
|
+
date: 2019-02-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|