logstash-input-http 4.1.12-java → 4.1.13-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 +3 -0
- data/README.md +1 -1
- data/VERSION +1 -1
- data/docs/index.asciidoc +8 -0
- data/lib/logstash-input-http_jars.rb +1 -1
- data/spec/inputs/http_spec.rb +21 -0
- data/vendor/jar-dependencies/org/logstash/plugins/input/http/logstash-input-http/{4.1.12/logstash-input-http-4.1.12.jar → 4.1.13/logstash-input-http-4.1.13.jar} +0 -0
- 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: 94247806a5d8c9a3b304a1d6e831f17571b1cb9f565f850d6b382b15cb8335ff
|
|
4
|
+
data.tar.gz: 2d2e6f55b502c2286a30f7e88f985de62a01dcfd3cfed884dac4cd1a24c7c07e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dbb8634f8329871af2cbfcff78190e1a59643ba0a9150c8397cf4c0560570bb5fd65075842eebf8ea3ca962c2c7f16ce6ecc9f2ac5fcfb1c61ff7d02f8b7707
|
|
7
|
+
data.tar.gz: b494b8b1e684bafa3be2d3f87c4c9d9a3c4e127debba8b659ca2d28a580e9a4fc7d1b4d0ff9f5af036732852ce0e7ccdf3cc1c5aacd3e51c8b5042beabd2ccf5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 4.1.13
|
|
2
|
+
- Fix to use the `Content-type` declared charset to decode the request body [#230](https://github.com/logstash-plugins/logstash-input-http/pull/230)
|
|
3
|
+
|
|
1
4
|
## 4.1.12
|
|
2
5
|
- Update Netty dependency to 4.1.136.Final [#228](https://github.com/logstash-plugins/logstash-input-http/pull/228)
|
|
3
6
|
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Logstash Plugin
|
|
2
2
|
|
|
3
|
-
[](https://github.com/logstash-plugins/logstash-input-http/actions/workflows/unit-tests.yml)
|
|
4
4
|
|
|
5
5
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
|
6
6
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.1.
|
|
1
|
+
4.1.13
|
data/docs/index.asciidoc
CHANGED
|
@@ -27,6 +27,14 @@ Logstash will convert it into an event for subsequent processing. Users
|
|
|
27
27
|
can pass plain text, JSON, or any formatted data and use a corresponding codec with this
|
|
28
28
|
input. For Content-Type `application/json` the `json` codec is used, but for all other
|
|
29
29
|
data formats, `plain` codec is used.
|
|
30
|
+
If the `Content-type` header also defines a charset like in:
|
|
31
|
+
|
|
32
|
+
[source,text]
|
|
33
|
+
-----
|
|
34
|
+
curl -X POST -H 'Content-Type: application/json; charset=ISO-8859-1'
|
|
35
|
+
-----
|
|
36
|
+
|
|
37
|
+
then that charset is used to decode the request body. Else UTF-8 is applied.
|
|
30
38
|
|
|
31
39
|
This input can also be used to receive webhook requests to integrate with other services
|
|
32
40
|
and applications. By taking advantage of the vast plugin ecosystem available in Logstash
|
|
@@ -9,4 +9,4 @@ require_jar('io.netty', 'netty-transport', '4.1.136.Final')
|
|
|
9
9
|
require_jar('io.netty', 'netty-buffer', '4.1.136.Final')
|
|
10
10
|
require_jar('io.netty', 'netty-resolver', '4.1.136.Final')
|
|
11
11
|
require_jar('io.netty', 'netty-common', '4.1.136.Final')
|
|
12
|
-
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '4.1.
|
|
12
|
+
require_jar('org.logstash.plugins.input.http', 'logstash-input-http', '4.1.13')
|
data/spec/inputs/http_spec.rb
CHANGED
|
@@ -11,6 +11,17 @@ require 'inputs/helpers'
|
|
|
11
11
|
|
|
12
12
|
java_import "io.netty.handler.ssl.util.SelfSignedCertificate"
|
|
13
13
|
|
|
14
|
+
shared_examples "decodes message with charset" do |charset|
|
|
15
|
+
let(:headers) { { "content-type" => "application/json; charset=#{charset}" } }
|
|
16
|
+
let(:body) { '{"msg":"A Coruña"}'.encode(charset) }
|
|
17
|
+
|
|
18
|
+
it "should decode the message accordingly" do
|
|
19
|
+
client.post("http://127.0.0.1:#{port}/meh.json", :headers => headers, :body => body).call
|
|
20
|
+
event = logstash_queue.pop
|
|
21
|
+
expect(event.get("msg")).to eq("A Coruña")
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
14
25
|
describe LogStash::Inputs::Http do
|
|
15
26
|
|
|
16
27
|
before do
|
|
@@ -223,6 +234,16 @@ describe LogStash::Inputs::Http do
|
|
|
223
234
|
expect(event.get("message_body")).to eq("Hello")
|
|
224
235
|
end
|
|
225
236
|
end
|
|
237
|
+
|
|
238
|
+
context "when receiving a request with content-type specifying charset" do
|
|
239
|
+
context "ISO-8859-1" do
|
|
240
|
+
it_behaves_like "decodes message with charset", "ISO-8859-1"
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
context "UTF-8" do
|
|
244
|
+
it_behaves_like "decodes message with charset", "utf-8"
|
|
245
|
+
end
|
|
246
|
+
end
|
|
226
247
|
end
|
|
227
248
|
|
|
228
249
|
context "with json codec" do
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
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.13
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-07-29 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: logstash-core-plugin-api
|
|
@@ -176,7 +176,7 @@ files:
|
|
|
176
176
|
- vendor/jar-dependencies/io/netty/netty-resolver/4.1.136.Final/netty-resolver-4.1.136.Final.jar
|
|
177
177
|
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.136.Final/netty-transport-native-unix-common-4.1.136.Final.jar
|
|
178
178
|
- vendor/jar-dependencies/io/netty/netty-transport/4.1.136.Final/netty-transport-4.1.136.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.13/logstash-input-http-4.1.13.jar
|
|
180
180
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
181
181
|
licenses:
|
|
182
182
|
- Apache License (2.0)
|
|
@@ -198,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
198
198
|
- !ruby/object:Gem::Version
|
|
199
199
|
version: '0'
|
|
200
200
|
requirements: []
|
|
201
|
-
rubygems_version: 3.
|
|
201
|
+
rubygems_version: 3.6.3
|
|
202
202
|
specification_version: 4
|
|
203
203
|
summary: Receives events over HTTP or HTTPS
|
|
204
204
|
test_files:
|