logstash-filter-elastic_integration 8.16.1-java → 8.17.0-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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f35223224df1e39071c86969881c8e06f9d6c024c227fc4e1f2f8a171bd4640
4
- data.tar.gz: a0a629d13474d8d78eb063ecca3bbc905b4db0f88d32128932db43ab88150b41
3
+ metadata.gz: a573be36ffb3dcbedb2b5fcad10a996f48f5382502704bb3b34b011161e8ec1d
4
+ data.tar.gz: c01bc40b553158df6d5f4e2b87718646c7a287cbea44766a357e50d6870a9406
5
5
  SHA512:
6
- metadata.gz: 563d95a8916e0310b6804a2fae2479fa45078f41d5865d2ea86428d2b9d751068150e40eae0c6db9de704f63bce11bb7f3b11006825ae2cfa4535218a87b2c83
7
- data.tar.gz: d959f8fde8a7675e726922a126d6e0c40ca59e4bdd65e181b927a795a6bd4fc4df79a0fd15bb705c081d67ca1faf534b9c5141310b42c21a45905ccf6a6c6ce2
6
+ metadata.gz: e48d0384d2f2db3bb7eae70e3e5eadab39f49c80d557fd079fa2a56972cc4ccab80ae741545b581d94ec2f3577c6319c12ed8d7823f6eb326e1cee6efead1e2a
7
+ data.tar.gz: 24c87ed71cc21f629b75a46eb074fcab6ebe15b27d9f360a126dfd864ac617be57a7c7371f4717feb0602f66dd5c5dd754252bac783fdd3230384f4e92199dff
data/VERSION CHANGED
@@ -1 +1 @@
1
- 8.16.1
1
+ 8.17.0
@@ -8,4 +8,4 @@
8
8
  ########################################################################
9
9
 
10
10
  require 'jar_dependencies'
11
- require_jar('co/elastic', 'logstash-filter-elastic_integration', '8.16.1')
11
+ require_jar('co/elastic', 'logstash-filter-elastic_integration', '8.17.0')
@@ -7,4 +7,4 @@
7
7
  # with the Elastic License 2.0.
8
8
  ########################################################################
9
9
 
10
- LogStash::Filters::ElasticIntegration::VERSION='8.16.1'
10
+ LogStash::Filters::ElasticIntegration::VERSION='8.17.0'
@@ -135,7 +135,6 @@ class LogStash::Filters::ElasticIntegration < LogStash::Filters::Base
135
135
  initialize_event_processor!
136
136
 
137
137
  perform_preflight_check!
138
- check_versions_alignment
139
138
  end # def register
140
139
 
141
140
  def filter(event)
@@ -346,8 +345,8 @@ class LogStash::Filters::ElasticIntegration < LogStash::Filters::Base
346
345
 
347
346
  if serverless?
348
347
  @elasticsearch_rest_client = _elasticsearch_rest_client(config) do |builder|
349
- builder.configureElasticApi { |elasticApi| elasticApi.setApiVersion(ELASTIC_API_VERSION) }
350
- end
348
+ builder.configureElasticApi { |elasticApi| elasticApi.setApiVersion(ELASTIC_API_VERSION) }
349
+ end
351
350
  end
352
351
  end
353
352
 
@@ -375,24 +374,13 @@ class LogStash::Filters::ElasticIntegration < LogStash::Filters::Base
375
374
  end
376
375
 
377
376
  def perform_preflight_check!
378
- connected_es_version_info
379
377
  check_user_privileges!
380
378
  check_es_cluster_license!
381
379
  end
382
380
 
383
- def preflight_check_instance
384
- java_import('co.elastic.logstash.filters.elasticintegration.PreflightCheck')
385
- @preflight_check ||= PreflightCheck.new(@elasticsearch_rest_client)
386
- end
387
-
388
- def connected_es_version_info
389
- @connected_es_version_info ||= preflight_check_instance.getElasticsearchVersionInfo
390
- rescue => e
391
- raise_config_error!(e.message)
392
- end
393
-
394
381
  def check_user_privileges!
395
- preflight_check_instance.checkUserPrivileges
382
+ java_import('co.elastic.logstash.filters.elasticintegration.PreflightCheck')
383
+ PreflightCheck.new(@elasticsearch_rest_client).checkUserPrivileges
396
384
  rescue => e
397
385
  security_error_message = "no handler found for uri [/_security/user/_has_privileges]"
398
386
  if e.message.include?(security_error_message)
@@ -415,13 +403,17 @@ class LogStash::Filters::ElasticIntegration < LogStash::Filters::Base
415
403
  end
416
404
 
417
405
  def check_es_cluster_license!
418
- preflight_check_instance.checkLicense
406
+ java_import('co.elastic.logstash.filters.elasticintegration.PreflightCheck')
407
+ PreflightCheck.new(@elasticsearch_rest_client).checkLicense
419
408
  rescue => e
420
409
  raise_config_error!(e.message)
421
410
  end
422
411
 
423
412
  def serverless?
424
- connected_es_version_info["build_flavor"] == 'serverless'
413
+ java_import('co.elastic.logstash.filters.elasticintegration.PreflightCheck')
414
+ PreflightCheck.new(@elasticsearch_rest_client).isServerless
415
+ rescue => e
416
+ raise_config_error!(e.message)
425
417
  end
426
418
 
427
419
  ##
@@ -462,44 +454,4 @@ class LogStash::Filters::ElasticIntegration < LogStash::Filters::Base
462
454
  ERR
463
455
  end
464
456
  end
465
-
466
- ##
467
- # compares the current plugin version with the Elasticsearch version connected to
468
- # generates a warning or info message based on the situation where the plugin is ahead or behind of the connected Elasticsearch
469
- def check_versions_alignment
470
- plugin_major_version, plugin_minor_version = VERSION.split('.').map(&:to_i)
471
- es_major_version, es_minor_version = connected_es_version_info["number"].split('.').first(2).map(&:to_i)
472
-
473
- logger.info("This #{VERSION} version of plugin embedded Ingest node components from Elasticsearch #{plugin_major_version}.#{plugin_minor_version}")
474
-
475
- es_full_version = connected_es_version_info["number"]
476
-
477
- if es_major_version > plugin_major_version
478
- logger.warn "This plugin v#{VERSION} is connected to a newer MAJOR " +
479
- "version of Elasticsearch v#{es_full_version}, and may " +
480
- "have trouble loading or running pipelines that use new " +
481
- "features; for the best experience, update this plugin " +
482
- "to at least v#{es_major_version}.#{es_minor_version}."
483
- elsif es_major_version < plugin_major_version
484
- logger.warn "This plugin v#{VERSION} is connected to an older MAJOR " +
485
- "version of Elasticsearch v#{es_full_version}, and may " +
486
- "have trouble loading or running pipelines that use " +
487
- "features that were deprecated before Elasticsearch " +
488
- "v#{plugin_major_version}.0; for the best experience, " +
489
- "align major/minor versions across the Elastic Stack."
490
- elsif es_minor_version > plugin_minor_version
491
- logger.warn "This plugin v#{VERSION} is connected to a newer MINOR " +
492
- "version of Elasticsearch v#{es_full_version}, and may " +
493
- "have trouble loading or running pipelines that use new " +
494
- "features; for the best experience, update this plugin to " +
495
- "at least v#{es_major_version}.#{es_minor_version}."
496
- elsif es_minor_version < plugin_minor_version
497
- logger.info "This plugin v#{VERSION} is connected to an older MINOR " +
498
- "version of Elasticsearch v#{es_full_version}; for the best experience, " +
499
- "align major/minor versions across the Elastic Stack."
500
- else
501
- logger.debug "This plugin v#{VERSION} is connected to the same MAJOR/MINOR " +
502
- "version of Elasticsearch v#{es_full_version}."
503
- end
504
- end
505
457
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-filter-elastic_integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.16.1
4
+ version: 8.17.0
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-28 00:00:00.000000000 Z
11
+ date: 2025-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -75,7 +75,7 @@ files:
75
75
  - lib/logstash/filters/elastic_integration/jar_dependencies.rb
76
76
  - lib/logstash/filters/elastic_integration/version.rb
77
77
  - logstash-filter-elastic_integration.gemspec
78
- - vendor/jar-dependencies/co/elastic/logstash-filter-elastic_integration/8.16.1/logstash-filter-elastic_integration-8.16.1.jar
78
+ - vendor/jar-dependencies/co/elastic/logstash-filter-elastic_integration/8.17.0/logstash-filter-elastic_integration-8.17.0.jar
79
79
  homepage: https://www.elastic.co/logstash
80
80
  licenses:
81
81
  - ELv2