logstash-input-http 3.10.0-java → 3.10.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/VERSION +1 -1
- data/lib/logstash/inputs/http.rb +2 -1
- data/lib/logstash-input-http_jars.rb +1 -1
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.1/logstash-input-http-3.10.1.jar +0 -0
- metadata +3 -3
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.0/logstash-input-http-3.10.0.jar +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 642f338dcfc85ebf178de9bbbe169d9434466d86bd2c29af426f77000bbcde57
|
4
|
+
data.tar.gz: 014a70144de1c4b2d62692f770063345e2e22cb96b8c38591ea7b3aefa0e352a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4dbb208b38db415a943539d9a0dadeb34de98675648950b55ded11132b1dcdb09924769429e6f55e832b44d31d947468da8ae3b52a31fea03c3f38c849f77aa1
|
7
|
+
data.tar.gz: 717313cfb345c8cb7a4e9498b85c99caf6276b89dec279257c07d095de3459b70888997e71ee105c407f1b8195e070fafb2c904cd88160db6e65d81d058d35b7
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.10.1
|
2
|
+
- Properly naming netty threads [#191](https://github.com/logstash-plugins/logstash-input-http/pull/191)
|
3
|
+
|
1
4
|
## 3.10.0
|
2
5
|
- add improved proactive rate-limiting, rejecting new requests when queue has been actively blocking for more than 10 seconds [#179](https://github.com/logstash-plugins/logstash-input-http/pull/179)
|
3
6
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.10.
|
1
|
+
3.10.1
|
data/lib/logstash/inputs/http.rb
CHANGED
@@ -391,7 +391,8 @@ class LogStash::Inputs::Http < LogStash::Inputs::Base
|
|
391
391
|
|
392
392
|
def create_http_server(message_handler)
|
393
393
|
org.logstash.plugins.inputs.http.NettyHttpServer.new(
|
394
|
-
@host, @port, message_handler, build_ssl_params, @threads,
|
394
|
+
@id, @host, @port, message_handler, build_ssl_params, @threads,
|
395
|
+
@max_pending_requests, @max_content_length, @response_code)
|
395
396
|
end
|
396
397
|
|
397
398
|
def build_ssl_params
|
@@ -8,4 +8,4 @@ require_jar('io.netty', 'netty-common', '4.1.115.Final')
|
|
8
8
|
require_jar('io.netty', 'netty-transport', '4.1.115.Final')
|
9
9
|
require_jar('io.netty', 'netty-handler', '4.1.115.Final')
|
10
10
|
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.115.Final')
|
11
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.10.
|
11
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.10.1')
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-input-http
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.10.
|
4
|
+
version: 3.10.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -176,7 +176,7 @@ files:
|
|
176
176
|
- vendor/jar-dependencies/io/netty/netty-handler/4.1.115.Final/netty-handler-4.1.115.Final.jar
|
177
177
|
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar
|
178
178
|
- vendor/jar-dependencies/io/netty/netty-transport/4.1.115.Final/netty-transport-4.1.115.Final.jar
|
179
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.
|
179
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.1/logstash-input-http-3.10.1.jar
|
180
180
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
181
181
|
licenses:
|
182
182
|
- Apache License (2.0)
|