logstash-output-elasticsearch 12.0.3-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 +6 -0
- data/docs/index.asciidoc +7 -6
- 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,9 @@
|
|
1
|
+
## 12.0.5
|
2
|
+
- [DOC] Fix link to Logstash DLQ docs [#1214](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1214)
|
3
|
+
|
4
|
+
## 12.0.4
|
5
|
+
- [DOC] Update Cloud terminology [#1212](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1212)
|
6
|
+
|
1
7
|
## 12.0.3
|
2
8
|
- Demote connection log entry from WARN to INFO connection during register phase [#1211](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1211)
|
3
9
|
|
data/docs/index.asciidoc
CHANGED
@@ -65,9 +65,10 @@ Set the value to port :443 instead.
|
|
65
65
|
For more info on sending data from {ls} to {es-serverless}, check out the {serverless-docs}/elasticsearch/what-is-elasticsearch-serverless[{es-serverless} docs].
|
66
66
|
|
67
67
|
[id="plugins-{type}s-{plugin}-ess"]
|
68
|
-
====
|
68
|
+
==== {ls} to {ech}
|
69
69
|
|
70
|
-
|
70
|
+
You can run Elasticsearch on your own hardware or use Elastic Cloud Hosted, available on AWS, GCP, and Azure.
|
71
|
+
Try Elastic Cloud Hosted for free: https://cloud.elastic.co/registration.
|
71
72
|
|
72
73
|
==== Compatibility with the Elastic Common Schema (ECS)
|
73
74
|
|
@@ -189,7 +190,7 @@ Example:
|
|
189
190
|
}
|
190
191
|
|
191
192
|
|
192
|
-
==== Retry
|
193
|
+
==== Retry policy
|
193
194
|
|
194
195
|
The retry policy has changed significantly in the 8.1.1 release.
|
195
196
|
This plugin uses the Elasticsearch bulk API to optimize its imports into Elasticsearch. These requests may experience
|
@@ -222,7 +223,7 @@ Note that 409 exceptions are no longer retried. Please set a higher `retry_on_co
|
|
222
223
|
It is more performant for Elasticsearch to retry these exceptions than this plugin.
|
223
224
|
|
224
225
|
[id="plugins-{type}s-{plugin}-dlq-policy"]
|
225
|
-
==== DLQ
|
226
|
+
==== DLQ policy
|
226
227
|
|
227
228
|
Mapping (404) errors from Elasticsearch can lead to data loss. Unfortunately
|
228
229
|
mapping errors cannot be handled without human intervention and without looking
|
@@ -230,8 +231,8 @@ at the field that caused the mapping mismatch. If the DLQ is enabled, the
|
|
230
231
|
original events causing the mapping errors are stored in a file that can be
|
231
232
|
processed at a later time. Often times, the offending field can be removed and
|
232
233
|
re-indexed to Elasticsearch. If the DLQ is not enabled, and a mapping error
|
233
|
-
happens, the problem is logged as a warning, and the event is dropped.
|
234
|
-
|
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.
|
235
236
|
The list of error codes accepted for DLQ could be customized with <<plugins-{type}s-{plugin}-dlq_custom_codes>>
|
236
237
|
but should be used only in motivated cases.
|
237
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-
|
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
|