logstash-output-elasticsearch 10.4.0-java → 10.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/index.asciidoc +15 -0
- data/logstash-output-elasticsearch.gemspec +2 -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: 5e5b6da5658007e7a4a0a9c1b9e087cd9d91ea37b9d13909370c3982e0d353f7
|
|
4
|
+
data.tar.gz: d20c029af20c6ea1fed2a4287b81d8d5b723e8dda2d078abe7d686ea14075286
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9c7facb3b428ebac3ddb3e2a55c1ceb410ddf64429197872565e1a7069174d1410be4044ca099666bbe3c5b65afcaf555358043881d3654a5bdd1fa81488ebea
|
|
7
|
+
data.tar.gz: bfc16cff30b59df4e66d3adb306ecf1da02e4036f3e1146db2004bc4576a46e1463d8a63f6806f53651380ca4f9df892730e65387a9e0cb43484cef2388f27be
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 10.4.1
|
|
2
|
+
- [DOC] Added note about `_type` setting change from `doc` to `_doc` [#884](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/884)
|
|
3
|
+
|
|
1
4
|
## 10.4.0
|
|
2
5
|
- Fixed default index value [#927](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/927)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -21,6 +21,21 @@ include::{include_path}/plugin_header.asciidoc[]
|
|
|
21
21
|
|
|
22
22
|
==== Description
|
|
23
23
|
|
|
24
|
+
.Compatibility Note
|
|
25
|
+
[NOTE]
|
|
26
|
+
================================================================================
|
|
27
|
+
When connected to Elasticsearch 7.x, modern versions of this plugin
|
|
28
|
+
use the required `_doc` document-type when inserting documents.
|
|
29
|
+
|
|
30
|
+
If you are using an earlier version of Logstash and wish to connect to
|
|
31
|
+
Elasticsearch 7.x, first upgrade Logstash to version 6.8 to ensure it
|
|
32
|
+
picks up changes to the Elasticsearch index template.
|
|
33
|
+
|
|
34
|
+
If you are using a custom <<plugins-{type}s-{plugin}-template>>,
|
|
35
|
+
ensure your template uses the `_doc` document-type before
|
|
36
|
+
connecting to Elasticsearch 7.x.
|
|
37
|
+
================================================================================
|
|
38
|
+
|
|
24
39
|
.Compatibility Note
|
|
25
40
|
[NOTE]
|
|
26
41
|
================================================================================
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '10.4.
|
|
3
|
+
s.version = '10.4.1'
|
|
4
|
+
|
|
4
5
|
s.licenses = ['apache-2.0']
|
|
5
6
|
s.summary = "Stores logs in Elasticsearch"
|
|
6
7
|
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: 10.4.
|
|
4
|
+
version: 10.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: 2020-03-
|
|
11
|
+
date: 2020-03-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|