logstash-input-http 4.1.0-java → 4.1.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/4.1.1/logstash-input-http-4.1.1.jar +0 -0
- metadata +3 -3
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/4.1.0/logstash-input-http-4.1.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: 5995f6ffdb09de7e3482f265836ce1053be15f8aa2704a4080537be0b2f26abf
|
4
|
+
data.tar.gz: 23763ff5feb081d03d0bb899782ba8cd2d26f3c1bbd36fd387b3126f2dc4f671
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7397f2fbd52c987b057086e4d14ed7e9cbc9228ea3a54d1e57a92f576df33b97140bf1e0860846638d47a7b3625be997fbdf868c312bfa3c3dcfd4cfb035fff
|
7
|
+
data.tar.gz: b57c461e6331abb8c87930a1970d1d139d04aad54de3070d1ed97a709fcee4a3f37676cfed3b3657f3534992718a89c7d3f4fedac17d421cc515fc456c35d1d5
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 4.1.1
|
2
|
+
- Properly naming netty threads [#191](https://github.com/logstash-plugins/logstash-input-http/pull/191)
|
3
|
+
|
1
4
|
## 4.1.0
|
2
5
|
- add improved proactive rate-limiting, rejecting new requests when queue has been actively blocking for more than 10 seconds [#186](https://github.com/logstash-plugins/logstash-input-http/pull/186)
|
3
6
|
- This is a forward-port of functionality also introduced to the 3.x series in v3.10.0
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.1.
|
1
|
+
4.1.1
|
data/lib/logstash/inputs/http.rb
CHANGED
@@ -324,7 +324,8 @@ class LogStash::Inputs::Http < LogStash::Inputs::Base
|
|
324
324
|
|
325
325
|
def create_http_server(message_handler)
|
326
326
|
org.logstash.plugins.inputs.http.NettyHttpServer.new(
|
327
|
-
@host, @port, message_handler, build_ssl_params, @threads,
|
327
|
+
@id, @host, @port, message_handler, build_ssl_params, @threads,
|
328
|
+
@max_pending_requests, @max_content_length, @response_code)
|
328
329
|
end
|
329
330
|
|
330
331
|
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', '4.1.
|
11
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '4.1.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: 4.1.
|
4
|
+
version: 4.1.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/4.1.
|
179
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/4.1.1/logstash-input-http-4.1.1.jar
|
180
180
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
181
181
|
licenses:
|
182
182
|
- Apache License (2.0)
|