logstash-output-elasticsearch 12.0.4-java → 12.0.5-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/index.asciidoc +4 -4
- 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: 8f73112936353991f4182669560364a81a8e8f7c2989c6e9562805596ea8f5df
|
4
|
+
data.tar.gz: 769c0e3ba35947d828a017ae8c57840fe254033bef3fb79b9c4a2a1f4c7caf7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37264be1800dfea9b851ff7e5c09908ea646645a2490ac11b39e616f06c8307c8dbc93c3065065655bba26881cfbee4dacaa391822c5dde7e2ef34af3ccb32ce
|
7
|
+
data.tar.gz: 169cf7908f4504ae1065999285ec07c3a46ec35fcbc9fd1cab17d35bc1166caa485b7e8d330edc54dcfad48811c0de2ae76f736596857d3d64206f706fb90590
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 12.0.5
|
2
|
+
- [DOC] Fix link to Logstash DLQ docs [#1214](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1214)
|
3
|
+
|
1
4
|
## 12.0.4
|
2
5
|
- [DOC] Update Cloud terminology [#1212](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1212)
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
@@ -190,7 +190,7 @@ Example:
|
|
190
190
|
}
|
191
191
|
|
192
192
|
|
193
|
-
==== Retry
|
193
|
+
==== Retry policy
|
194
194
|
|
195
195
|
The retry policy has changed significantly in the 8.1.1 release.
|
196
196
|
This plugin uses the Elasticsearch bulk API to optimize its imports into Elasticsearch. These requests may experience
|
@@ -223,7 +223,7 @@ Note that 409 exceptions are no longer retried. Please set a higher `retry_on_co
|
|
223
223
|
It is more performant for Elasticsearch to retry these exceptions than this plugin.
|
224
224
|
|
225
225
|
[id="plugins-{type}s-{plugin}-dlq-policy"]
|
226
|
-
==== DLQ
|
226
|
+
==== DLQ policy
|
227
227
|
|
228
228
|
Mapping (404) errors from Elasticsearch can lead to data loss. Unfortunately
|
229
229
|
mapping errors cannot be handled without human intervention and without looking
|
@@ -231,8 +231,8 @@ at the field that caused the mapping mismatch. If the DLQ is enabled, the
|
|
231
231
|
original events causing the mapping errors are stored in a file that can be
|
232
232
|
processed at a later time. Often times, the offending field can be removed and
|
233
233
|
re-indexed to Elasticsearch. If the DLQ is not enabled, and a mapping error
|
234
|
-
happens, the problem is logged as a warning, and the event is dropped.
|
235
|
-
|
234
|
+
happens, the problem is logged as a warning, and the event is dropped.
|
235
|
+
Check out https://www.elastic.co/guide/en/logstash/current/dead-letter-queues.html[Dead letter queues (DLQ)] for more information about processing events in the DLQ.
|
236
236
|
The list of error codes accepted for DLQ could be customized with <<plugins-{type}s-{plugin}-dlq_custom_codes>>
|
237
237
|
but should be used only in motivated cases.
|
238
238
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
3
|
-
s.version = '12.0.
|
3
|
+
s.version = '12.0.5'
|
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: 12.0.
|
4
|
+
version: 12.0.5
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|