logstash-input-http_poller 3.3.3 → 3.3.4
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/docs/index.asciidoc +0 -10
- data/logstash-input-http_poller.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: 510d4c5db5222815c8af25d28a88199ad7f777b3
|
4
|
+
data.tar.gz: 013097dc6abeb229fc0928b9dc8018c7b38de19d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06d85c637163581b719c3819bfd4a0efc59a548a86352ac003382454c4fee031a66a9083573191a534e54856a41b3fd3e26565e58fd39ba827d822b5e6ac77f6
|
7
|
+
data.tar.gz: 6dd62b76ea1bbeffec57c9248fbecc995c5babd296d329d0cd96ba7e46160b8d40f1386e2cc92406333e95f4890082a613610aefdcccbe3fd4b2996d0d374143
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.3.4
|
2
|
+
- Docs: Remove ssl_certificate_validation option from the docs
|
3
|
+
|
1
4
|
## 3.3.3
|
2
5
|
- Don't bleed URls credentials on startup or on exception #82
|
3
6
|
|
@@ -16,6 +19,7 @@
|
|
16
19
|
|
17
20
|
## 3.1.1
|
18
21
|
- Handle empty bodies correctly
|
22
|
+
|
19
23
|
## 3.1.0
|
20
24
|
- Use rufus-scheduler for more flexible scheduling. Many thanks to [@hummingV](https://github.com/hummingV) for this contribution. ([#58](https://github.com/logstash-plugins/logstash-input-http_poller/pull/58))
|
21
25
|
|
data/docs/index.asciidoc
CHANGED
@@ -115,7 +115,6 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
115
115
|
| <<plugins-{type}s-{plugin}-retry_non_idempotent>> |<<boolean,boolean>>|No
|
116
116
|
| <<plugins-{type}s-{plugin}-schedule>> |<<hash,hash>>|No
|
117
117
|
| <<plugins-{type}s-{plugin}-socket_timeout>> |<<number,number>>|No
|
118
|
-
| <<plugins-{type}s-{plugin}-ssl_certificate_validation>> |<<boolean,boolean>>|No
|
119
118
|
| <<plugins-{type}s-{plugin}-target>> |<<string,string>>|No
|
120
119
|
| <<plugins-{type}s-{plugin}-truststore>> |a valid filesystem path|No
|
121
120
|
| <<plugins-{type}s-{plugin}-truststore_password>> |<<password,password>>|No
|
@@ -331,15 +330,6 @@ See: rufus/scheduler for details about different schedule options and value stri
|
|
331
330
|
|
332
331
|
Timeout (in seconds) to wait for data on the socket. Default is `10s`
|
333
332
|
|
334
|
-
[id="plugins-{type}s-{plugin}-ssl_certificate_validation"]
|
335
|
-
===== `ssl_certificate_validation`
|
336
|
-
|
337
|
-
* Value type is <<boolean,boolean>>
|
338
|
-
* Default value is `true`
|
339
|
-
|
340
|
-
Set this to false to disable SSL/TLS certificate validation
|
341
|
-
Note: setting this to false is generally considered insecure!
|
342
|
-
|
343
333
|
[id="plugins-{type}s-{plugin}-target"]
|
344
334
|
===== `target`
|
345
335
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-input-http_poller'
|
3
|
-
s.version = '3.3.
|
3
|
+
s.version = '3.3.4'
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
5
5
|
s.summary = "Poll HTTP endpoints with Logstash."
|
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: 3.3.
|
4
|
+
version: 3.3.4
|
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: 2017-09-
|
12
|
+
date: 2017-09-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|