logstash-output-http 3.0.1 → 3.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -10
- data/lib/logstash/outputs/http.rb +0 -5
- data/logstash-output-http.gemspec +2 -2
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 166795862fd592911c1662e2b5413de11f4824ba
|
4
|
+
data.tar.gz: 028265896afc48b3e0e0c806007c523eec50ae71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ca69a7fd82c6738025fd25eba6d2e3e728035e2e9d52bbf061fba6a4675392dc0d7744536546ade2b6564259806b42f80d7d7230a1755697548aea897d384fb
|
7
|
+
data.tar.gz: 869ce7b82b48ed382b602c3188e425e45a771ce2a7274aba3dba2670bee009198d5879020cf5b3e46a58a9d1b9c2e61591136698732d6372b9a936ce05aa5c92
|
data/CHANGELOG.md
CHANGED
@@ -1,11 +1,21 @@
|
|
1
|
+
## 3.1.1
|
2
|
+
- Relax constraint on logstash-core-plugin-api to >= 1.60 <= 2.99
|
3
|
+
|
4
|
+
## 3.1.0
|
5
|
+
- breaking,config: Remove deprecated config 'verify_ssl'. Please use 'ssl_certificate_validation'.
|
6
|
+
|
1
7
|
## 3.0.1
|
2
|
-
|
8
|
+
- Republish all the gems under jruby.
|
9
|
+
|
3
10
|
## 3.0.0
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
11
|
+
- Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
|
12
|
+
|
13
|
+
## 2.1.3
|
14
|
+
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
15
|
+
|
16
|
+
## 2.1.2
|
17
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
18
|
+
|
9
19
|
## 2.1.1
|
10
20
|
- Require http_client mixin with better keepalive handling
|
11
21
|
|
@@ -25,7 +35,8 @@
|
|
25
35
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
26
36
|
- Dependency on logstash-core update to 2.0
|
27
37
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
38
|
+
## 1.1.0
|
39
|
+
- Concurrent execution
|
40
|
+
- Add many HTTP options via the http_client mixin
|
41
|
+
- Switch to manticore as HTTP Client
|
42
|
+
|
@@ -26,9 +26,6 @@ class LogStash::Outputs::Http < LogStash::Outputs::Base
|
|
26
26
|
# URL to use
|
27
27
|
config :url, :validate => :string, :required => :true
|
28
28
|
|
29
|
-
# DEPRECATED. Set 'ssl_certificate_validation' instead
|
30
|
-
config :verify_ssl, :validate => :boolean, :default => true, :deprecated => "Please use 'ssl_certificate_validation' instead. This option will be removed in a future release!"
|
31
|
-
|
32
29
|
# The HTTP Verb. One of "put", "post", "patch", "delete", "get", "head"
|
33
30
|
config :http_method, :validate => VALID_METHODS, :required => :true
|
34
31
|
|
@@ -65,8 +62,6 @@ class LogStash::Outputs::Http < LogStash::Outputs::Base
|
|
65
62
|
config :message, :validate => :string
|
66
63
|
|
67
64
|
def register
|
68
|
-
# Handle this deprecated option. TODO: remove the option
|
69
|
-
@ssl_certificate_validation = @verify_ssl if @verify_ssl
|
70
65
|
@http_method = @http_method.to_sym
|
71
66
|
|
72
67
|
# We count outstanding requests with this queue
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-output-http'
|
4
|
-
s.version = '3.
|
4
|
+
s.version = '3.1.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint"
|
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"
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
21
21
|
|
22
22
|
# Gem dependencies
|
23
|
-
s.add_runtime_dependency "logstash-core-plugin-api", "
|
23
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
24
24
|
s.add_runtime_dependency "logstash-mixin-http_client", ">= 2.2.1", "< 5.0.0"
|
25
25
|
|
26
26
|
s.add_development_dependency 'logstash-devutils'
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - "
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '1.60'
|
19
|
+
- - "<="
|
17
20
|
- !ruby/object:Gem::Version
|
18
|
-
version: '2.
|
21
|
+
version: '2.99'
|
19
22
|
name: logstash-core-plugin-api
|
20
23
|
prerelease: false
|
21
24
|
type: :runtime
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.60'
|
30
|
+
- - "<="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '2.
|
32
|
+
version: '2.99'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
29
35
|
requirements:
|
@@ -123,7 +129,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
129
|
version: '0'
|
124
130
|
requirements: []
|
125
131
|
rubyforge_project:
|
126
|
-
rubygems_version: 2.
|
132
|
+
rubygems_version: 2.6.3
|
127
133
|
signing_key:
|
128
134
|
specification_version: 4
|
129
135
|
summary: This output lets you `PUT` or `POST` events to a generic HTTP(S) endpoint
|