logstash-input-elasticsearch 4.3.0 → 4.3.1
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 -5
- data/logstash-input-elasticsearch.gemspec +1 -1
- data/spec/inputs/elasticsearch_spec.rb +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: a87e0f6689410ccaef80bdc7d83b61d414c1f72ba63ea4524b479723931d390a
|
|
4
|
+
data.tar.gz: 6bc8fc519e80e98ecdeeaf69d6043464eee30850bcd09a8fa245751c2500a79f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c4ce2ec0b83e77be2022ecea02e716bc5d87d3c1d8f82f61e616b6e3725f8636e0e02f1035bb51feef75d1c00594c5cd2a53e52622878c7a438e309f42124e4
|
|
7
|
+
data.tar.gz: 1c5cfcf1f0a57c94dc03cb4ed83f968f8d66b372acdf96792db6da4dd8a11f12ece1c00fe3c9cdad3d4aa8c6035ed2be49be47152d4e166b3c7ab31a1ce7793e
|
data/CHANGELOG.md
CHANGED
data/docs/index.asciidoc
CHANGED
|
@@ -163,11 +163,10 @@ It will be removed in the next major version of Logstash.
|
|
|
163
163
|
* Value type is <<array,array>>
|
|
164
164
|
* Default value is `["_index", "_type", "_id"]`
|
|
165
165
|
|
|
166
|
-
If document metadata storage is requested by enabling the `docinfo`
|
|
167
|
-
option
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
in the Elasticsearch documentation for more information.
|
|
166
|
+
If document metadata storage is requested by enabling the `docinfo` option, this
|
|
167
|
+
option lists the metadata fields to save in the current event. See
|
|
168
|
+
{ref}/mapping-fields.html[Meta-Fields] in the Elasticsearch documentation for
|
|
169
|
+
more information.
|
|
171
170
|
|
|
172
171
|
[id="plugins-{type}s-{plugin}-docinfo_target"]
|
|
173
172
|
===== `docinfo_target`
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-elasticsearch'
|
|
4
|
-
s.version = '4.3.
|
|
4
|
+
s.version = '4.3.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Reads query results from an Elasticsearch cluster"
|
|
7
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"
|
|
@@ -125,7 +125,7 @@ describe LogStash::Inputs::Elasticsearch do
|
|
|
125
125
|
end
|
|
126
126
|
|
|
127
127
|
context 'without slices directive' do
|
|
128
|
-
let(:config) { super
|
|
128
|
+
let(:config) { super.tap { |h| h.delete('slices') } }
|
|
129
129
|
it 'runs just one slice' do
|
|
130
130
|
expect(plugin).to receive(:do_run_slice).with(duck_type(:<<))
|
|
131
131
|
expect(Thread).to_not receive(:new)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-elasticsearch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|