logstash-output-elasticsearch 11.12.0-java → 11.12.2-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 +7 -1
- data/docs/index.asciidoc +1 -1
- data/lib/logstash/plugin_mixins/elasticsearch/common.rb +2 -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: 7f7955021889fbf4d2de6e6e167dba2b1e1231349a324d65ceb9d11b507c2405
|
|
4
|
+
data.tar.gz: 1cba0bd70fa6fe4d22631d473fee7d39f92cb3bca709aa61659c00de5992f30a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de2eda2f2efb0564ca1f5a2165fa8e3b430f8c404c5b1640e8dce90ffa05885776c0ebaa7abd45a397129f4c08f146a1c1e2bdea68b07f5cbe624c28b26e8bfd
|
|
7
|
+
data.tar.gz: 219300f8c64b45079fcf9daa81f2afd219baa588a252f6905bb2ab234615ea0a99986c4b0e9aaf7bfc8b4d3e7afe5c5e51db7e287b4351a17a12abda52bece9a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
|
+
## 11.12.2
|
|
2
|
+
- [Doc] Fixes the broken apache http client link [#1101](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1101)
|
|
3
|
+
|
|
4
|
+
## 11.12.1
|
|
5
|
+
- Log bulk request response body on error, not just when debug logging is enabled [#1096](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1096)
|
|
6
|
+
|
|
1
7
|
## 11.12.0
|
|
2
8
|
- Add legacy template API support for Elasticsearch 8 [#1092](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1092)
|
|
3
9
|
|
|
4
10
|
## 11.11.0
|
|
5
|
-
- When using an `api_key` along with either `cloud_id` or https `hosts`, you no longer need to also specify `ssl => true` [#1065](https://github.com/logstash-plugins/logstash-output-elasticsearch/issues/1065)
|
|
11
|
+
- When using an `api_key` along with either `cloud_id` or https `hosts`, you no longer need to also specify `ssl => true`[#1066](https://github.com/logstash-plugins/logstash-output-elasticsearch/issues/1066). Fixes [#935](https://github.com/logstash-plugins/logstash-output-elasticsearch/issues/935) and [#1065](https://github.com/logstash-plugins/logstash-output-elasticsearch/issues/1065)
|
|
6
12
|
|
|
7
13
|
## 11.10.0
|
|
8
14
|
- Feature: expose `dlq_routed` document metric to track the documents routed into DLQ [#1090](https://github.com/logstash-plugins/logstash-output-elasticsearch/pull/1090)
|
data/docs/index.asciidoc
CHANGED
|
@@ -1185,7 +1185,7 @@ How long to wait before checking for a stale connection to determine if a keepal
|
|
|
1185
1185
|
Consider setting this value lower than the default, possibly to 0, if you get connection errors regularly.
|
|
1186
1186
|
|
|
1187
1187
|
This client is based on Apache Commons. Here's how the
|
|
1188
|
-
https://hc.apache.org/httpcomponents-client-
|
|
1188
|
+
https://hc.apache.org/httpcomponents-client-4.5.x/current/httpclient/apidocs/org/apache/http/impl/conn/PoolingHttpClientConnectionManager.html#setValidateAfterInactivity(int)[Apache
|
|
1189
1189
|
Commons documentation] describes this option: "Defines period of inactivity in
|
|
1190
1190
|
milliseconds after which persistent connections must be re-validated prior to
|
|
1191
1191
|
being leased to the consumer. Non-positive value passed to this method disables
|
|
@@ -335,8 +335,8 @@ module LogStash; module PluginMixins; module ElasticSearch
|
|
|
335
335
|
retry unless @stopping.true?
|
|
336
336
|
rescue ::LogStash::Outputs::ElasticSearch::HttpClient::Pool::BadResponseCodeError => e
|
|
337
337
|
@bulk_request_metrics.increment(:failures)
|
|
338
|
-
log_hash = {:code => e.response_code, :url => e.url.sanitized.to_s,
|
|
339
|
-
|
|
338
|
+
log_hash = {:code => e.response_code, :url => e.url.sanitized.to_s,
|
|
339
|
+
:content_length => e.request_body.bytesize, :body => e.response_body}
|
|
340
340
|
message = "Encountered a retryable error (will retry with exponential backoff)"
|
|
341
341
|
|
|
342
342
|
# We treat 429s as a special case because these really aren't errors, but
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '11.12.
|
|
3
|
+
s.version = '11.12.2'
|
|
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.12.
|
|
4
|
+
version: 11.12.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|