logstash-output-elasticsearch 11.22.8-java → 11.22.10-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: '095f2a5a39c7d84611e9c6a2acde280602cb22dc45689b3ff67d56f4a96ae84e'
4
- data.tar.gz: be365ee280485e417f972b085680e8aa797790d7d7902e56149294ef41d6ff8b
3
+ metadata.gz: 1ce26f1744954843bcf5738f6ea07c57ecde6a2b5e63e827d9117bffeb8d2857
4
+ data.tar.gz: cb9306e7fa13d3aeb1edf089035047f1db95debd5490675ccaabf28771dabbb6
5
5
  SHA512:
6
- metadata.gz: 7a271130d2cc5186d0765adfad852f0ad208d5ddc50d4fe065b63973931fac4dbe021e5d1859bce98239e95ca69f0a3ee19eecdde5855d9d1856737af6c52baf
7
- data.tar.gz: 6f8366787872fc54591af8698f2992eb29e0ef06acbf4d9e21d367b2f72132f64790c724a36e66a7cc541d9ecba51af850bf6c33d686ac3306157cda622d9372
6
+ metadata.gz: 7a1b4dfe4d8788794073b9cda092cad34d8a0a3f5a28e9b7ed77de1c4a88dc668c7db3c88279bab9c31d8a33f1ebe60eb70136d3a5a8c5d378cc9f0dd53d7c6b
7
+ data.tar.gz: b59c8d820a59cc7ef5c33d434714077568cb6fe20651d027893054f6c6bd0d89f6eeef6989313613a65f23cdab99abbf9594ea2ecd4cb4dc4f5edbed25733d98
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 11.22.10
2
+ - Add `x-elastic-product-origin` header to Elasticsearch requests [#1194](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1194)
3
+
4
+ ## 11.22.9
5
+ - Vendor ECS template for Elasticsearch 9.x in built gem [#1188](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1188)
6
+
1
7
  ## 11.22.8
2
8
  - Added ECS template for Elasticsearch 9.x [#1187](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1187)
3
9
 
@@ -2,7 +2,7 @@ require 'manticore'
2
2
  require 'cgi'
3
3
 
4
4
  module LogStash; module Outputs; class ElasticSearch; class HttpClient;
5
- DEFAULT_HEADERS = { "Content-Type" => "application/json" }
5
+ DEFAULT_HEADERS = { "Content-Type" => "application/json", 'x-elastic-product-origin' => 'logstash-output-elasticsearch' }
6
6
 
7
7
  class ManticoreAdapter
8
8
  attr_reader :manticore, :logger