logstash-filter-elasticsearch 3.18.0 → 3.19.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 +106 -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: 3.
|
4
|
+
version: 3.19.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
|
@@ -179,9 +179,13 @@ files:
|
|
179
179
|
- docs/index.asciidoc
|
180
180
|
- lib/logstash/filters/elasticsearch.rb
|
181
181
|
- lib/logstash/filters/elasticsearch/client.rb
|
182
|
+
- lib/logstash/filters/elasticsearch/dsl_executor.rb
|
183
|
+
- lib/logstash/filters/elasticsearch/esql_executor.rb
|
182
184
|
- lib/logstash/filters/elasticsearch/patches/_elasticsearch_transport_http_manticore.rb
|
183
185
|
- logstash-filter-elasticsearch.gemspec
|
184
186
|
- spec/es_helper.rb
|
187
|
+
- spec/filters/elasticsearch_dsl_spec.rb
|
188
|
+
- spec/filters/elasticsearch_esql_spec.rb
|
185
189
|
- spec/filters/elasticsearch_spec.rb
|
186
190
|
- spec/filters/elasticsearch_ssl_spec.rb
|
187
191
|
- spec/filters/fixtures/elasticsearch_7.x_hits_total_as_object.json
|
@@ -207,6 +211,7 @@ files:
|
|
207
211
|
- spec/filters/fixtures/test_certs/ls.crt
|
208
212
|
- spec/filters/fixtures/test_certs/ls.der.sha256
|
209
213
|
- spec/filters/fixtures/test_certs/ls.key
|
214
|
+
- spec/filters/integration/elasticsearch_esql_spec.rb
|
210
215
|
- spec/filters/integration/elasticsearch_spec.rb
|
211
216
|
homepage: https://elastic.co/logstash
|
212
217
|
licenses:
|
@@ -235,6 +240,8 @@ specification_version: 4
|
|
235
240
|
summary: Copies fields from previous log events in Elasticsearch to current events
|
236
241
|
test_files:
|
237
242
|
- spec/es_helper.rb
|
243
|
+
- spec/filters/elasticsearch_dsl_spec.rb
|
244
|
+
- spec/filters/elasticsearch_esql_spec.rb
|
238
245
|
- spec/filters/elasticsearch_spec.rb
|
239
246
|
- spec/filters/elasticsearch_ssl_spec.rb
|
240
247
|
- spec/filters/fixtures/elasticsearch_7.x_hits_total_as_object.json
|
@@ -260,4 +267,5 @@ test_files:
|
|
260
267
|
- spec/filters/fixtures/test_certs/ls.crt
|
261
268
|
- spec/filters/fixtures/test_certs/ls.der.sha256
|
262
269
|
- spec/filters/fixtures/test_certs/ls.key
|
270
|
+
- spec/filters/integration/elasticsearch_esql_spec.rb
|
263
271
|
- spec/filters/integration/elasticsearch_spec.rb
|