logstash-output-elasticsearch 11.22.4-java → 11.22.6-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/docs/index.asciidoc +4 -2
- data/logstash-output-elasticsearch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 343f5f74f1b90ac5a9a630a161d48711cb2e96ea23d06460522b783cdbfaa74c
|
4
|
+
data.tar.gz: 8b4ca20e7765774da6e623ea146321c1ced96c6c659d0d15f8fc4dea9f1563df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c6503cd13d7b081fcee3fb58d08c6b3191627ddce872deea3742115ad5803cb05b9daebcf9da9a00a37231572fd81bbe12c11c38911cf9073039ab6a9c2b727
|
7
|
+
data.tar.gz: 9db7f516f07458575dc10b2437b802ae7fc3018a8338a9678e03abdfebaba6bd05c1b489a2fd52a93e3e682532636871526122f047f497c0c23a2ce2d6289f54
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
## 11.22.6
|
2
|
+
- [DOC] Logstash output.elasticsearch index can be alias or datastream [#1179](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1179)
|
3
|
+
|
4
|
+
## 11.22.5
|
5
|
+
- [DOC] Correct default data stream name (`logs-generic-default`) [#1140](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1140)
|
6
|
+
|
1
7
|
## 11.22.4
|
2
8
|
- [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)
|
3
9
|
|
data/docs/index.asciidoc
CHANGED
@@ -118,7 +118,7 @@ output {
|
|
118
118
|
|
119
119
|
This example shows the minimal settings for processing data streams. Events
|
120
120
|
with `data_stream.*`` fields are routed to the appropriate data streams. If the
|
121
|
-
fields are missing, routing defaults to `logs-generic-
|
121
|
+
fields are missing, routing defaults to `logs-generic-default`.
|
122
122
|
|
123
123
|
**Example: Customize data stream name**
|
124
124
|
|
@@ -800,7 +800,9 @@ NOTE: `ilm_rollover_alias` does NOT support dynamic variable substitution as
|
|
800
800
|
** ECS Compatibility disabled: `"logstash-%{+yyyy.MM.dd}"`
|
801
801
|
** ECS Compatibility enabled: `"ecs-logstash-%{+yyyy.MM.dd}"`
|
802
802
|
|
803
|
-
The
|
803
|
+
The indexing target to write events to.
|
804
|
+
Can point to an {ref}/index-mgmt.html[index], {ref}/aliases.html[alias], or {ref}/data-streams.html[data stream].
|
805
|
+
This can be dynamic using the `%{foo}` syntax.
|
804
806
|
The default value will partition your indices by day so you can more easily
|
805
807
|
delete old data or only search specific date ranges.
|
806
808
|
Indexes may not contain uppercase characters.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
3
|
-
s.version = '11.22.
|
3
|
+
s.version = '11.22.6'
|
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.
|
4
|
+
version: 11.22.6
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|