logstash-output-elasticsearch 11.22.3-java → 11.22.5-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: f11cbc421fcbb44c5d993d70f97a8a32c79a278b5770805d5d82c3f63bdde681
4
- data.tar.gz: 38ea003c71ed10ac5bffe531a16404c27670c67a6f06fbd637ed5d1544970e59
3
+ metadata.gz: 60c6529fa7531efe04e93b06b86961ac5e9995a636215ff4c010e0cdd3a5a15f
4
+ data.tar.gz: 761246b97c79d5bea3da8810d449e99ca704d5346aee1b52bc82f3f4a3926c60
5
5
  SHA512:
6
- metadata.gz: c8efac5e9e84066e1dbe7272b9bb04276d10b34983d8f8dc49824663c67c55be1e5a1bad3c5f7f13bdb2512e995ca1f0dab13f890a596f1ca73ff49a99414fc3
7
- data.tar.gz: 442f1690d2d96f87536a95d1827bba4e8029891209cf27fe5f380b126100288e9c3ca08dcfab6e0ce256ed24ddc74f91f318d81f0885b32fb8f9a45c1a388735
6
+ metadata.gz: fb414cc5197c87f4e111acb6b5b853b58f24705e2c186e4c2b6bc680b8c6d64583a46d51d471f352295ab632146025da2018cdc15ab12d3ef6f5e543611119c1
7
+ data.tar.gz: 321249fe2cb731ad67a3d2a02ed9fa46123ab731e514cc14339b9287a885cf524bbb06945ad5c53151c4ee292a08e1d810d336f20ae7df39a4c8c4ac686493e9
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 11.22.5
2
+ - [DOC] Correct default data stream name (`logs-generic-default`) [#1140](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1140)
3
+
4
+ ## 11.22.4
5
+ - [DOC] Adds note that ecs-compatibility is required for data streams to work properly [#1174](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1174)
6
+
1
7
  ## 11.22.3
2
8
  - Fixes an issue where events containing non-unicode strings could fail to serialize correctly when compression is enabled [#1169](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1169)
3
9
 
@@ -139,9 +145,11 @@
139
145
 
140
146
  ## 11.5.0
141
147
  - Feat: add ssl_supported_protocols option [#1055](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1055)
148
+ - [DOC] Add `v8` to supported values for ecs_compatiblity defaults [#1059](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1059)
142
149
 
143
150
  ## 11.4.2
144
- - [DOC] Add `v8` to supported values for ecs_compatiblity defaults [#1059](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1059)
151
+ - Fixes an issue where events containing non-unicode strings could fail to serialize correctly when compression is enabled [#1169](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1169)
152
+ - NOTE: This is a backport of the relevant fix from v11.22.3 to the 11.4 series for inclusion with Logstash 7.17 maintenance releases
145
153
 
146
154
  ## 11.4.1
147
155
  - Feat: upgrade manticore (http-client) library [#1063](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1063)
data/docs/index.asciidoc CHANGED
@@ -99,6 +99,8 @@ as logs, metrics, and events) into {es} and {es-serverless}:
99
99
  * <<plugins-{type}s-{plugin}-data_stream_sync_fields>>
100
100
  * <<plugins-{type}s-{plugin}-data_stream_type>>
101
101
 
102
+ IMPORTANT: <<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility>> must be enabled (set to `v1` or `v8`) for data streams to work properly.
103
+
102
104
  [id="plugins-{type}s-{plugin}-ds-examples"]
103
105
  ===== Data stream configuration examples
104
106
 
@@ -116,7 +118,7 @@ output {
116
118
 
117
119
  This example shows the minimal settings for processing data streams. Events
118
120
  with `data_stream.*`` fields are routed to the appropriate data streams. If the
119
- fields are missing, routing defaults to `logs-generic-logstash`.
121
+ fields are missing, routing defaults to `logs-generic-default`.
120
122
 
121
123
  **Example: Customize data stream name**
122
124
 
@@ -134,8 +136,6 @@ output {
134
136
  -----
135
137
 
136
138
 
137
-
138
-
139
139
  ==== Writing to different indices: best practices
140
140
 
141
141
  NOTE: You cannot use dynamic variable substitution when `ilm_enabled` is `true`
@@ -511,6 +511,7 @@ The other `data_stream_*` settings will be used only if this setting is enabled.
511
511
 
512
512
  Logstash handles the output as a data stream when the supplied configuration
513
513
  is compatible with data streams and this value is set to `auto`.
514
+ Note that <<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility>> must be enabled (set to `v1` or `v8`) for data streams to work properly.
514
515
 
515
516
  [id="plugins-{type}s-{plugin}-data_stream_auto_routing"]
516
517
  ===== `data_stream_auto_routing`
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-elasticsearch'
3
- s.version = '11.22.3'
3
+ s.version = '11.22.5'
4
4
  s.licenses = ['apache-2.0']
5
5
  s.summary = "Stores logs in Elasticsearch"
6
6
  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"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elasticsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 11.22.3
4
+ version: 11.22.5
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-19 00:00:00.000000000 Z
11
+ date: 2024-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement