logstash-output-elasticsearch 11.22.3-java → 11.22.4-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 -1
- data/docs/index.asciidoc +3 -2
- data/logstash-output-elasticsearch.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: ca7853e786ec4b8b63975e609f741bfab19465b65b9d48cef21030a36b0ac6eb
|
|
4
|
+
data.tar.gz: 98ae91a57a372e758e494f355246c23a45ccae403eacce9649b36cfd95cbbd65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87d0fb490f7be1405e187731b8a80362c3a283f9896facd2ef77f3c569b62800afff1ed7806cfb958c9ad0caafcc175f729e8def1e4f9c01b0d756484d3cd6bb
|
|
7
|
+
data.tar.gz: 3dbfcb27c386f841c54adf1275ec09769a59f1ce8b6d86fd9d658de9ddfd4f316114bf17d716179f664c5dae2ecd9dd77d5230218a728eb93f941d765522e276
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 11.22.4
|
|
2
|
+
- [DOC] Adds note that ecs-compatibility is required for data streams to work properly [#1174](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1174)
|
|
3
|
+
|
|
1
4
|
## 11.22.3
|
|
2
5
|
- Fixes an issue where events containing non-unicode strings could fail to serialize correctly when compression is enabled [#1169](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1169)
|
|
3
6
|
|
|
@@ -139,9 +142,11 @@
|
|
|
139
142
|
|
|
140
143
|
## 11.5.0
|
|
141
144
|
- Feat: add ssl_supported_protocols option [#1055](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1055)
|
|
145
|
+
- [DOC] Add `v8` to supported values for ecs_compatiblity defaults [#1059](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1059)
|
|
142
146
|
|
|
143
147
|
## 11.4.2
|
|
144
|
-
-
|
|
148
|
+
- Fixes an issue where events containing non-unicode strings could fail to serialize correctly when compression is enabled [#1169](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1169)
|
|
149
|
+
- NOTE: This is a backport of the relevant fix from v11.22.3 to the 11.4 series for inclusion with Logstash 7.17 maintenance releases
|
|
145
150
|
|
|
146
151
|
## 11.4.1
|
|
147
152
|
- Feat: upgrade manticore (http-client) library [#1063](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1063)
|
data/docs/index.asciidoc
CHANGED
|
@@ -99,6 +99,8 @@ as logs, metrics, and events) into {es} and {es-serverless}:
|
|
|
99
99
|
* <<plugins-{type}s-{plugin}-data_stream_sync_fields>>
|
|
100
100
|
* <<plugins-{type}s-{plugin}-data_stream_type>>
|
|
101
101
|
|
|
102
|
+
IMPORTANT: <<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility>> must be enabled (set to `v1` or `v8`) for data streams to work properly.
|
|
103
|
+
|
|
102
104
|
[id="plugins-{type}s-{plugin}-ds-examples"]
|
|
103
105
|
===== Data stream configuration examples
|
|
104
106
|
|
|
@@ -134,8 +136,6 @@ output {
|
|
|
134
136
|
-----
|
|
135
137
|
|
|
136
138
|
|
|
137
|
-
|
|
138
|
-
|
|
139
139
|
==== Writing to different indices: best practices
|
|
140
140
|
|
|
141
141
|
NOTE: You cannot use dynamic variable substitution when `ilm_enabled` is `true`
|
|
@@ -511,6 +511,7 @@ The other `data_stream_*` settings will be used only if this setting is enabled.
|
|
|
511
511
|
|
|
512
512
|
Logstash handles the output as a data stream when the supplied configuration
|
|
513
513
|
is compatible with data streams and this value is set to `auto`.
|
|
514
|
+
Note that <<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility>> must be enabled (set to `v1` or `v8`) for data streams to work properly.
|
|
514
515
|
|
|
515
516
|
[id="plugins-{type}s-{plugin}-data_stream_auto_routing"]
|
|
516
517
|
===== `data_stream_auto_routing`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '11.22.
|
|
3
|
+
s.version = '11.22.4'
|
|
4
4
|
s.licenses = ['apache-2.0']
|
|
5
5
|
s.summary = "Stores logs in Elasticsearch"
|
|
6
6
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-elasticsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 11.22.
|
|
4
|
+
version: 11.22.4
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-03-
|
|
11
|
+
date: 2024-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|