logstash-input-http_poller 5.5.1 → 5.6.0
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 -0
- data/logstash-input-http_poller.gemspec +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3d161b8ee6f2170f109df31cd332fcd65d7603a0e38871a092d8360e4dd6828
|
|
4
|
+
data.tar.gz: bb5e20020ce59c81a48541ec89197b5fac5b39f33ab81dd7d1a8cb1d3fa0007f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9a598a4ded7a2922406a2862ab93a991bdac616bebf099bd7a7e47670f78b147d507be911f97bc66a3afb47ce9930e68d449c6d3f052e17890e6779ea3543ee
|
|
7
|
+
data.tar.gz: adeffbb5c09aa4bb08311da08b3c0342a30e42e230f89070ce14b201242ac40c6cd7b2abe6292300f0a251a847a21eb62f3ed3cb7e9fd5d2388d07b3e61d1007
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 5.6.0
|
|
2
|
+
- Added new `ssl_enabled` setting for enabling/disabling the SSL configurations [#146](https://github.com/logstash-plugins/logstash-input-http_poller/pull/146)
|
|
3
|
+
|
|
1
4
|
## 5.5.1
|
|
2
5
|
- [DOC]Remove redundant table items [#142](https://github.com/logstash-plugins/logstash-input-http_poller/pull/142)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -149,6 +149,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
149
149
|
| <<plugins-{type}s-{plugin}-ssl_certificate>> |<<path,path>>|No
|
|
150
150
|
| <<plugins-{type}s-{plugin}-ssl_certificate_authorities>> |list of <<path,path>>|No
|
|
151
151
|
| <<plugins-{type}s-{plugin}-ssl_cipher_suites>> |list of <<string,string>>|No
|
|
152
|
+
| <<plugins-{type}s-{plugin}-ssl_enabled>> |<<boolean,boolean>>|No
|
|
152
153
|
| <<plugins-{type}s-{plugin}-ssl_keystore_password>> |<<password,password>>|No
|
|
153
154
|
| <<plugins-{type}s-{plugin}-ssl_keystore_path>> |<<path,path>>|No
|
|
154
155
|
| <<plugins-{type}s-{plugin}-ssl_keystore_type>> |<<string,string>>|No
|
|
@@ -455,6 +456,15 @@ The .cer or .pem CA files to validate the server's certificate.
|
|
|
455
456
|
The list of cipher suites to use, listed by priorities.
|
|
456
457
|
Supported cipher suites vary depending on the Java and protocol versions.
|
|
457
458
|
|
|
459
|
+
[id="plugins-{type}s-{plugin}-ssl_enabled"]
|
|
460
|
+
===== `ssl_enabled`
|
|
461
|
+
|
|
462
|
+
* Value type is <<boolean,boolean>>
|
|
463
|
+
* Default value is `true`
|
|
464
|
+
|
|
465
|
+
Enable SSL/TLS secured communication. It must be `true` for other `ssl_` options
|
|
466
|
+
to take effect.
|
|
467
|
+
|
|
458
468
|
[id="plugins-{type}s-{plugin}-ssl_key"]
|
|
459
469
|
===== `ssl_key`
|
|
460
470
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-http_poller'
|
|
3
|
-
s.version = '5.
|
|
3
|
+
s.version = '5.6.0'
|
|
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"
|
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
# Gem dependencies
|
|
21
21
|
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
|
22
22
|
s.add_runtime_dependency 'logstash-codec-plain'
|
|
23
|
-
s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.
|
|
23
|
+
s.add_runtime_dependency "logstash-mixin-http_client", ">= 7.4.0", "< 8.0.0"
|
|
24
24
|
s.add_runtime_dependency 'logstash-mixin-scheduler', '~> 1.0'
|
|
25
25
|
s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.3'
|
|
26
26
|
s.add_runtime_dependency 'logstash-mixin-event_support', '~> 1.0', '>= 1.0.1'
|
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.
|
|
4
|
+
version: 5.6.0
|
|
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:
|
|
12
|
+
date: 2024-06-19 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -50,7 +50,7 @@ dependencies:
|
|
|
50
50
|
requirements:
|
|
51
51
|
- - ">="
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 7.
|
|
53
|
+
version: 7.4.0
|
|
54
54
|
- - "<"
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: 8.0.0
|
|
@@ -61,7 +61,7 @@ dependencies:
|
|
|
61
61
|
requirements:
|
|
62
62
|
- - ">="
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
|
-
version: 7.
|
|
64
|
+
version: 7.4.0
|
|
65
65
|
- - "<"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: 8.0.0
|