logstash-filter-elasticsearch 4.2.0 → 4.3.0
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 +132 -6
- data/lib/logstash/filters/elasticsearch/client.rb +8 -0
- data/lib/logstash/filters/elasticsearch/dsl_executor.rb +140 -0
- data/lib/logstash/filters/elasticsearch/esql_executor.rb +178 -0
- data/lib/logstash/filters/elasticsearch.rb +105 -129
- data/logstash-filter-elasticsearch.gemspec +1 -1
- data/spec/filters/elasticsearch_dsl_spec.rb +372 -0
- data/spec/filters/elasticsearch_esql_spec.rb +211 -0
- data/spec/filters/elasticsearch_spec.rb +129 -326
- data/spec/filters/integration/elasticsearch_esql_spec.rb +167 -0
- metadata +10 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-filter-elasticsearch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -165,9 +165,13 @@ files:
|
|
165
165
|
- docs/index.asciidoc
|
166
166
|
- lib/logstash/filters/elasticsearch.rb
|
167
167
|
- lib/logstash/filters/elasticsearch/client.rb
|
168
|
+
- lib/logstash/filters/elasticsearch/dsl_executor.rb
|
169
|
+
- lib/logstash/filters/elasticsearch/esql_executor.rb
|
168
170
|
- lib/logstash/filters/elasticsearch/patches/_elasticsearch_transport_http_manticore.rb
|
169
171
|
- logstash-filter-elasticsearch.gemspec
|
170
172
|
- spec/es_helper.rb
|
173
|
+
- spec/filters/elasticsearch_dsl_spec.rb
|
174
|
+
- spec/filters/elasticsearch_esql_spec.rb
|
171
175
|
- spec/filters/elasticsearch_spec.rb
|
172
176
|
- spec/filters/elasticsearch_ssl_spec.rb
|
173
177
|
- spec/filters/fixtures/elasticsearch_7.x_hits_total_as_object.json
|
@@ -193,6 +197,7 @@ files:
|
|
193
197
|
- spec/filters/fixtures/test_certs/ls.crt
|
194
198
|
- spec/filters/fixtures/test_certs/ls.der.sha256
|
195
199
|
- spec/filters/fixtures/test_certs/ls.key
|
200
|
+
- spec/filters/integration/elasticsearch_esql_spec.rb
|
196
201
|
- spec/filters/integration/elasticsearch_spec.rb
|
197
202
|
homepage: https://elastic.co/logstash
|
198
203
|
licenses:
|
@@ -221,6 +226,8 @@ specification_version: 4
|
|
221
226
|
summary: Copies fields from previous log events in Elasticsearch to current events
|
222
227
|
test_files:
|
223
228
|
- spec/es_helper.rb
|
229
|
+
- spec/filters/elasticsearch_dsl_spec.rb
|
230
|
+
- spec/filters/elasticsearch_esql_spec.rb
|
224
231
|
- spec/filters/elasticsearch_spec.rb
|
225
232
|
- spec/filters/elasticsearch_ssl_spec.rb
|
226
233
|
- spec/filters/fixtures/elasticsearch_7.x_hits_total_as_object.json
|
@@ -246,4 +253,5 @@ test_files:
|
|
246
253
|
- spec/filters/fixtures/test_certs/ls.crt
|
247
254
|
- spec/filters/fixtures/test_certs/ls.der.sha256
|
248
255
|
- spec/filters/fixtures/test_certs/ls.key
|
256
|
+
- spec/filters/integration/elasticsearch_esql_spec.rb
|
249
257
|
- spec/filters/integration/elasticsearch_spec.rb
|