logstash-output-elasticsearch 11.22.5-java → 11.22.7-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 +4 -4
- data/CHANGELOG.md +6 -0
- data/docs/index.asciidoc +12 -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: 79e398b6f51a26f05cce8ee42a518d206018596100d295a315be80ece7657a69
|
|
4
|
+
data.tar.gz: 64e8a614ba19d35f57b9eb273f27d47656610b64075a9007e8b3b3800d7fc3fd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 848bc00774e5bbb7189aa178cb52c804a6fd70032c132b22a6ba4304be4cb9c82e0e4025fa6494ee2c7ce0bf2ebe0c225d95a09dfa3b31d90dc387ee4af0e160
|
|
7
|
+
data.tar.gz: 3d7b26d1454c5e4c65380bca12d6fd1f3831cf076e758d443c217b0e5f1c917373b8ba6b80a7ccd2e952d1cf49bb245e6c3c110c32197c43c82a9ee07b7da068
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 11.22.7
|
|
2
|
+
- [DOC] `ssl_key` requires PKCS#8 format [#1181](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1181)
|
|
3
|
+
|
|
4
|
+
## 11.22.6
|
|
5
|
+
- [DOC] Logstash output.elasticsearch index can be alias or datastream [#1179](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1179)
|
|
6
|
+
|
|
1
7
|
## 11.22.5
|
|
2
8
|
- [DOC] Correct default data stream name (`logs-generic-default`) [#1140](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1140)
|
|
3
9
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -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.
|
|
@@ -1099,7 +1101,15 @@ If no explicit protocol is specified plain HTTP will be used.
|
|
|
1099
1101
|
* Value type is <<path,path>>
|
|
1100
1102
|
* There is no default value for this setting.
|
|
1101
1103
|
|
|
1102
|
-
|
|
1104
|
+
SSL key to use.
|
|
1105
|
+
This key must be in the PKCS8 format and PEM encoded.
|
|
1106
|
+
You can use the https://www.openssl.org/docs/man1.1.1/man1/openssl-pkcs8.html[openssl pkcs8] command to complete the conversion.
|
|
1107
|
+
For example, the command to convert a PEM encoded PKCS1 private key to a PEM encoded, non-encrypted PKCS8 key is:
|
|
1108
|
+
|
|
1109
|
+
[source,sh]
|
|
1110
|
+
-----
|
|
1111
|
+
openssl pkcs8 -inform PEM -in path/to/logstash.key -topk8 -nocrypt -outform PEM -out path/to/logstash.pkcs8.key
|
|
1112
|
+
-----
|
|
1103
1113
|
|
|
1104
1114
|
NOTE: This setting can be used only if <<plugins-{type}s-{plugin}-ssl_certificate>> is set.
|
|
1105
1115
|
|
|
@@ -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.7'
|
|
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.7
|
|
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-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|