logstash-integration-kafka 11.4.0-java → 11.4.1-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/docs/output-kafka.asciidoc +2 -2
- data/logstash-integration-kafka.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e5562239ccaed5a89b586942517c8cce2ed2142168ad22d5b8d9c55a3a6cb4d4
|
|
4
|
+
data.tar.gz: bfcf0ae13b30512324e9dce71bc2ce457c3e6656e2ce1c58bf544377c76add4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 02d67854eb10338192c737e32a79baf2926c976c3500f0e38b7f79593d1800e130dbb178ca72064981637c7160bfd6f8817ae3e28652fa86f6f6f4e4aee93c26
|
|
7
|
+
data.tar.gz: c4f0f576e44bdfcd907e0868efb13f8854a1540256253b5c426114bebecfedfd157faa9a275d64d5677fcdb765c16facda252af896e5a1db0d0c82fa3981f802
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 11.4.1
|
|
2
|
+
- [DOC] Match anchor ID and references for `message_headers` [#164](https://github.com/logstash-plugins/logstash-integration-kafka/pull/164)
|
|
3
|
+
|
|
1
4
|
## 11.4.0
|
|
2
5
|
- Add support for setting Kafka message headers in output plugin [#162](https://github.com/logstash-plugins/logstash-integration-kafka/pull/162)
|
|
3
6
|
|
data/docs/output-kafka.asciidoc
CHANGED
|
@@ -91,7 +91,7 @@ See the https://kafka.apache.org/{kafka_client_doc}/documentation for more detai
|
|
|
91
91
|
| <<plugins-{type}s-{plugin}-key_serializer>> |<<string,string>>|No
|
|
92
92
|
| <<plugins-{type}s-{plugin}-linger_ms>> |<<number,number>>|No
|
|
93
93
|
| <<plugins-{type}s-{plugin}-max_request_size>> |<<number,number>>|No
|
|
94
|
-
| <<plugins-{type}s-{plugin}-
|
|
94
|
+
| <<plugins-{type}s-{plugin}-message_headers>> |<<hash,hash>>|No
|
|
95
95
|
| <<plugins-{type}s-{plugin}-message_key>> |<<string,string>>|No
|
|
96
96
|
| <<plugins-{type}s-{plugin}-metadata_fetch_timeout_ms>> |<<number,number>>|No
|
|
97
97
|
| <<plugins-{type}s-{plugin}-metadata_max_age_ms>> |<<number,number>>|No
|
|
@@ -289,7 +289,7 @@ A map of key value pairs, each corresponding to a header name and its value resp
|
|
|
289
289
|
Example:
|
|
290
290
|
[source,ruby]
|
|
291
291
|
----------------------------------
|
|
292
|
-
|
|
292
|
+
message_headers => { "event_timestamp" => "%{@timestamp}" }
|
|
293
293
|
----------------------------------
|
|
294
294
|
|
|
295
295
|
[id="plugins-{type}s-{plugin}-message_key"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-integration-kafka'
|
|
3
|
-
s.version = '11.4.
|
|
3
|
+
s.version = '11.4.1'
|
|
4
4
|
s.licenses = ['Apache-2.0']
|
|
5
5
|
s.summary = "Integration with Kafka - input and output plugins"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline "+
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-integration-kafka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 11.4.
|
|
4
|
+
version: 11.4.1
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|