logstash-input-elasticsearch 4.3.0 → 4.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d8999f6e5261a2aedcf91e63941d0dbd0088af5969c7a132fdb9b2c64100985
4
- data.tar.gz: e85ebd29d645319b5f498ce44e6bbea68f752ab480917e20237ff5482fd57492
3
+ metadata.gz: a87e0f6689410ccaef80bdc7d83b61d414c1f72ba63ea4524b479723931d390a
4
+ data.tar.gz: 6bc8fc519e80e98ecdeeaf69d6043464eee30850bcd09a8fa245751c2500a79f
5
5
  SHA512:
6
- metadata.gz: de04e26035cb7a0ab9448f630f6d833894c9c0c74de60f7a781efdf0eebafdb7c54692a31790543ca019932bd84751ff67366bcff78f9a739967c5a8df627452
7
- data.tar.gz: 1984940fed8ca921ef26e8e4c30ce3c5c6bda4c0ed681676ca657c92a32e120518f2e4ac58d51a71e6951fde2fcd529a22227f05687517559b65991145217392
6
+ metadata.gz: 8c4ce2ec0b83e77be2022ecea02e716bc5d87d3c1d8f82f61e616b6e3725f8636e0e02f1035bb51feef75d1c00594c5cd2a53e52622878c7a438e309f42124e4
7
+ data.tar.gz: 1c5cfcf1f0a57c94dc03cb4ed83f968f8d66b372acdf96792db6da4dd8a11f12ece1c00fe3c9cdad3d4aa8c6035ed2be49be47152d4e166b3c7ab31a1ce7793e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 4.3.1
2
+ - Fixed deeplink to Elasticsearch Reference [#103](https://github.com/logstash-plugins/logstash-input-elasticsearch/pull/103)
3
+
1
4
  ## 4.3.0
2
5
  - Added managed slice scrolling with `slices` option
3
6
 
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, this option lists the metadata fields to save in the current
168
- event. See
169
- http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/_document_metadata.html[Document Metadata]
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.0'
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().except('slices') }
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.0
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-02-04 00:00:00.000000000 Z
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