logstash-output-elasticsearch 10.3.2-java → 10.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 +4 -4
- data/CHANGELOG.md +5 -2
- data/docs/index.asciidoc +3 -5
- data/logstash-output-elasticsearch.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4bc1db28d143c9e9de5ca30e4d9904fe68869c9392d9c0561a86132580a33c01
|
|
4
|
+
data.tar.gz: dd36b77eae45609e7a8723b920860810e0b44749101a0ac9c943c56b5404049f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4987848e9df3c18b011549e2b8f10f9fdef2fffda73e7ae320ef9238dad62b3f41a079980d232900a740ff548fad093ac97293fa725c5c3689540a25b6f58a6b
|
|
7
|
+
data.tar.gz: fb9f9c279a52729e1a17734ad1a208a49484335a8804aca34870b3a6d30d29d6cac417c93c049fdbb532c78aa6fbbf75e8de6e53b1d1a56d6e8db9286be115c0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
## 10.3.3
|
|
2
|
+
- [DOC] Replaced link to Elastic Cloud trial with attribute, and fixed a comma splice [#926](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/926)
|
|
3
|
+
|
|
1
4
|
## 10.3.2
|
|
2
5
|
- [DOC] Replaced setting name with correct value [#919](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/919)
|
|
3
|
-
-
|
|
4
|
-
-
|
|
6
|
+
- Fixed integration tests for Elasticsearch 7.6+ [#922](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/922)
|
|
7
|
+
- Fixed integration tests for Elasticsearch API `7.5.0` [#923](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/923)
|
|
5
8
|
|
|
6
9
|
## 10.3.1
|
|
7
10
|
- Fix: handle proxy => '' as if none was set [#912](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/912)
|
data/docs/index.asciidoc
CHANGED
|
@@ -38,8 +38,7 @@ Elasticsearch.
|
|
|
38
38
|
TIP: You can run Elasticsearch on your own hardware, or use our
|
|
39
39
|
https://www.elastic.co/cloud/elasticsearch-service[hosted {es} Service] on
|
|
40
40
|
Elastic Cloud. The Elasticsearch Service is available on both AWS and GCP.
|
|
41
|
-
|
|
42
|
-
for free].
|
|
41
|
+
{ess-trial}[Try the {es} Service for free].
|
|
43
42
|
|
|
44
43
|
This output only speaks the HTTP protocol. HTTP is the preferred protocol for interacting with Elasticsearch as of Logstash 2.0.
|
|
45
44
|
We strongly encourage the use of HTTP over the node protocol for a number of reasons. HTTP is only marginally slower,
|
|
@@ -624,9 +623,8 @@ which is bad.
|
|
|
624
623
|
* There is no default value for this setting.
|
|
625
624
|
|
|
626
625
|
Set the address of a forward HTTP proxy.
|
|
627
|
-
This
|
|
628
|
-
|
|
629
|
-
An empty string is treated as if proxy was not set, this is useful when using
|
|
626
|
+
This setting accepts only URI arguments to prevent leaking credentials.
|
|
627
|
+
An empty string is treated as if proxy was not set. This is useful when using
|
|
630
628
|
environment variables e.g. `proxy => '${LS_PROXY:}'`.
|
|
631
629
|
|
|
632
630
|
[id="plugins-{type}s-{plugin}-resurrect_delay"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '10.3.
|
|
3
|
+
s.version = '10.3.3'
|
|
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"
|