logstash-filter-elasticsearch 3.16.0 → 3.16.1
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 +3 -0
- data/docs/index.asciidoc +2 -2
- data/logstash-filter-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: ad7767b1d40fd59a496420b7e4256cdc8ce85a9dc5d438e5d495918e09f04b17
|
|
4
|
+
data.tar.gz: f1c7c730a52abc8344416b1116eda1701d2e118e37054eec3993e6cc7da505ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b78fa510472eee856712d95e07e0d8ef599bc3376477aa37fbc2d6be0628e51d0fe64de43611ad398c24274fc91fb134c5fd7dd6f239bfdac32d23034657c7
|
|
7
|
+
data.tar.gz: 4e35f51081661f012577c72e35bc516f44a92608f49a60c01963e947b28324c4ce85612513848fdecd70260aa8f50000651fc560b524452814d0fd7785c0cd4c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.16.1
|
|
2
|
+
- Version bump to pick up doc fix in [#172](https://github.com/logstash-plugins/logstash-filter-elasticsearch/pull/172)
|
|
3
|
+
|
|
1
4
|
## 3.16.0
|
|
2
5
|
- Added request header `Elastic-Api-Version` for serverless [#174](https://github.com/logstash-plugins/logstash-filter-elasticsearch/pull/174)
|
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -142,7 +142,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
142
142
|
| <<plugins-{type}s-{plugin}-query_template>> |<<string,string>>|No
|
|
143
143
|
| <<plugins-{type}s-{plugin}-result_size>> |<<number,number>>|No
|
|
144
144
|
| <<plugins-{type}s-{plugin}-retry_on_failure>> |<<number,number>>|No
|
|
145
|
-
| <<plugins-{type}s-{plugin}-retry_on_status>> |<<
|
|
145
|
+
| <<plugins-{type}s-{plugin}-retry_on_status>> |<<array,array>>|No
|
|
146
146
|
| <<plugins-{type}s-{plugin}-sort>> |<<string,string>>|No
|
|
147
147
|
| <<plugins-{type}s-{plugin}-ssl>> |<<boolean,boolean>>|__Deprecated__
|
|
148
148
|
| <<plugins-{type}s-{plugin}-ssl_certificate>> |<<path,path>>|No
|
|
@@ -354,7 +354,7 @@ When enabled, retry requests that result in connection errors or an HTTP status
|
|
|
354
354
|
[id="plugins-{type}s-{plugin}-retry_on_status"]
|
|
355
355
|
===== `retry_on_status`
|
|
356
356
|
|
|
357
|
-
* Value type is <<
|
|
357
|
+
* Value type is <<array,array>>
|
|
358
358
|
* Default value is an empty list `[]`
|
|
359
359
|
|
|
360
360
|
Which HTTP Status codes to consider for retries (in addition to connection errors) when using <<plugins-{type}s-{plugin}-retry_on_failure>>,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-elasticsearch'
|
|
4
|
-
s.version = '3.16.
|
|
4
|
+
s.version = '3.16.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Copies fields from previous log events in Elasticsearch to current events "
|
|
7
7
|
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"
|