logstash-input-http 3.10.0-java → 3.10.2-java
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 +6 -0
- data/VERSION +1 -1
- data/lib/logstash/inputs/http.rb +2 -1
- data/lib/logstash-input-http_jars.rb +8 -8
- data/vendor/jar-dependencies/io/netty/netty-buffer/{4.1.115.Final/netty-buffer-4.1.115.Final.jar → 4.1.118.Final/netty-buffer-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec/{4.1.115.Final/netty-codec-4.1.115.Final.jar → 4.1.118.Final/netty-codec-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec-http/{4.1.115.Final/netty-codec-http-4.1.115.Final.jar → 4.1.118.Final/netty-codec-http-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-common/{4.1.115.Final/netty-common-4.1.115.Final.jar → 4.1.118.Final/netty-common-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-handler/{4.1.115.Final/netty-handler-4.1.115.Final.jar → 4.1.118.Final/netty-handler-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport/{4.1.115.Final/netty-transport-4.1.115.Final.jar → 4.1.118.Final/netty-transport-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/{4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar → 4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.2/logstash-input-http-3.10.2.jar +0 -0
- metadata +10 -10
- 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: 6b2e1f2ba0b8bf548831dd903c8b3f816eb0fa0291d66376be445856ec3a8b19
|
4
|
+
data.tar.gz: deda4622e693c0787deb81fbee1475c656315300958ec245b981c5b1cef8c5e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44fb386dc2b9513be8a9de54a87090aa184c9bbf72b309f0401f4f04789354d98ef616ce951ce04cbdad90fba3d104a59a40c9ef5cbab1bf1a1c353c0292be05
|
7
|
+
data.tar.gz: a0933170b85404d5a2e55ce09f7706bbd761d5a5e64a8fdde95f55a36a61218cbdb3a6546fc1dfa4613f499fec857c7862081cb6b21a8852d53f9db5805fd765
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 3.10.2
|
2
|
+
- Upgrade netty to 4.1.118 [#194](https://github.com/logstash-plugins/logstash-input-http/pull/194)
|
3
|
+
|
4
|
+
## 3.10.1
|
5
|
+
- Properly naming netty threads [#191](https://github.com/logstash-plugins/logstash-input-http/pull/191)
|
6
|
+
|
1
7
|
## 3.10.0
|
2
8
|
- 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
9
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.10.
|
1
|
+
3.10.2
|
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
|
@@ -1,11 +1,11 @@
|
|
1
1
|
# AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
|
2
2
|
|
3
3
|
require 'jar_dependencies'
|
4
|
-
require_jar('io.netty', 'netty-buffer', '4.1.
|
5
|
-
require_jar('io.netty', 'netty-codec', '4.1.
|
6
|
-
require_jar('io.netty', 'netty-codec-http', '4.1.
|
7
|
-
require_jar('io.netty', 'netty-common', '4.1.
|
8
|
-
require_jar('io.netty', 'netty-transport', '4.1.
|
9
|
-
require_jar('io.netty', 'netty-handler', '4.1.
|
10
|
-
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.
|
11
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.10.
|
4
|
+
require_jar('io.netty', 'netty-buffer', '4.1.118.Final')
|
5
|
+
require_jar('io.netty', 'netty-codec', '4.1.118.Final')
|
6
|
+
require_jar('io.netty', 'netty-codec-http', '4.1.118.Final')
|
7
|
+
require_jar('io.netty', 'netty-common', '4.1.118.Final')
|
8
|
+
require_jar('io.netty', 'netty-transport', '4.1.118.Final')
|
9
|
+
require_jar('io.netty', 'netty-handler', '4.1.118.Final')
|
10
|
+
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.118.Final')
|
11
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '3.10.2')
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.2
|
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-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -169,14 +169,14 @@ files:
|
|
169
169
|
- spec/fixtures/certs/openssl.cnf
|
170
170
|
- spec/inputs/helpers.rb
|
171
171
|
- spec/inputs/http_spec.rb
|
172
|
-
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.
|
173
|
-
- vendor/jar-dependencies/io/netty/netty-codec-http/4.1.
|
174
|
-
- vendor/jar-dependencies/io/netty/netty-codec/4.1.
|
175
|
-
- vendor/jar-dependencies/io/netty/netty-common/4.1.
|
176
|
-
- vendor/jar-dependencies/io/netty/netty-handler/4.1.
|
177
|
-
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.
|
178
|
-
- vendor/jar-dependencies/io/netty/netty-transport/4.1.
|
179
|
-
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.
|
172
|
+
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.118.Final/netty-buffer-4.1.118.Final.jar
|
173
|
+
- vendor/jar-dependencies/io/netty/netty-codec-http/4.1.118.Final/netty-codec-http-4.1.118.Final.jar
|
174
|
+
- vendor/jar-dependencies/io/netty/netty-codec/4.1.118.Final/netty-codec-4.1.118.Final.jar
|
175
|
+
- vendor/jar-dependencies/io/netty/netty-common/4.1.118.Final/netty-common-4.1.118.Final.jar
|
176
|
+
- vendor/jar-dependencies/io/netty/netty-handler/4.1.118.Final/netty-handler-4.1.118.Final.jar
|
177
|
+
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.118.Final/netty-transport-native-unix-common-4.1.118.Final.jar
|
178
|
+
- vendor/jar-dependencies/io/netty/netty-transport/4.1.118.Final/netty-transport-4.1.118.Final.jar
|
179
|
+
- vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/3.10.2/logstash-input-http-3.10.2.jar
|
180
180
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
181
181
|
licenses:
|
182
182
|
- Apache License (2.0)
|