logstash-output-elasticsearch 11.3.2-java → 11.3.3-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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d61a9b747e103df43da5dbfb1d17b1b569be50c28c309b31b465473b745d25c
|
|
4
|
+
data.tar.gz: 730421e68d942ed0deb80afc3c8691dc3d42a7c0942b0184e45898d46829a816
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6541260b1af413acf1b4728aca0d3590e622dce3096257c67e6a27bd66468d773cc197d6b2055fca17439ec5861aed422e198c8c3ab8475ebd257a63f0e6ca56
|
|
7
|
+
data.tar.gz: '00410793caecb073abea82106174bc894f13aeb8d8d20e44d22c223ad80a1fd5adfc8b1d7b80fe6670aa0b9fe7f4ce577f6c60f6505064b6678dcfd1100edd0e'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 11.3.3
|
|
2
|
+
- Feat: add support for 'traces' data stream type [#1057](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1057)
|
|
3
|
+
|
|
1
4
|
## 11.3.2
|
|
2
5
|
- Refactor: review manticore error handling/logging, logging originating cause in case of connection related error when debug level is enabled [#1029](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1029)
|
|
3
6
|
- Java causes on connection related exceptions will now be extra logged when plugin is logging at debug level
|
data/docs/index.asciidoc
CHANGED
|
@@ -505,7 +505,7 @@ overwritten with a warning.
|
|
|
505
505
|
* Default value is `logs`.
|
|
506
506
|
|
|
507
507
|
The data stream type used to construct the data stream at index time.
|
|
508
|
-
Currently, only `logs`, `metrics` and `
|
|
508
|
+
Currently, only `logs`, `metrics`, `synthetics` and `traces` are supported.
|
|
509
509
|
|
|
510
510
|
[id="plugins-{type}s-{plugin}-doc_as_upsert"]
|
|
511
511
|
===== `doc_as_upsert`
|
|
@@ -18,7 +18,7 @@ module LogStash module Outputs class ElasticSearch
|
|
|
18
18
|
# Defaults to `false` in Logstash 7.x and `auto` starting in Logstash 8.0.
|
|
19
19
|
base.config :data_stream, :validate => ['true', 'false', 'auto']
|
|
20
20
|
|
|
21
|
-
base.config :data_stream_type, :validate => ['logs', 'metrics', 'synthetics'], :default => 'logs'
|
|
21
|
+
base.config :data_stream_type, :validate => ['logs', 'metrics', 'synthetics', 'traces'], :default => 'logs'
|
|
22
22
|
base.config :data_stream_dataset, :validate => :dataset_identifier, :default => 'generic'
|
|
23
23
|
base.config :data_stream_namespace, :validate => :namespace_identifier, :default => 'default'
|
|
24
24
|
|
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.3.
|
|
4
|
+
version: 11.3.3
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-12-
|
|
11
|
+
date: 2021-12-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|