logstash-output-elasticsearch 7.3.4-java → 7.3.5-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 +3 -0
- data/lib/logstash/outputs/elasticsearch/common.rb +1 -1
- data/logstash-output-elasticsearch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0704e65cabf140ff127d635cab65d46ad97560b
|
|
4
|
+
data.tar.gz: 1d5f7ad8b7ed776a731c2b6f358ed68e3c298730
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8524f21f81db1ceb65087e4ef6a6083138af7ec5b414e1b7ae2dc9ffc5fc84405d80d9ce5cdbbf01f12ebc018eb7712f7f8b23f90794d608bc28af64a6b86098
|
|
7
|
+
data.tar.gz: 302b6037af174ede873f1faec0088fb83ca3fa9fdf09be0d8c38a0d9e8454ed7fb3cf91c49af3457033b0a25c65586e46d463da6795a3dcab56513e3950c0e00
|
data/CHANGELOG.md
CHANGED
|
@@ -150,7 +150,7 @@ module LogStash; module Outputs; class ElasticSearch;
|
|
|
150
150
|
# To support bwc, we check if DLQ exists. otherwise we log and drop event (previous behavior)
|
|
151
151
|
if @dlq_writer
|
|
152
152
|
# TODO: Change this to send a map with { :status => status, :action => action } in the future
|
|
153
|
-
@dlq_writer.write(
|
|
153
|
+
@dlq_writer.write(action_event, "Could not index event to Elasticsearch. status: #{status}, action: #{action}, response: #{response}")
|
|
154
154
|
else
|
|
155
155
|
@logger.warn "Could not index event to Elasticsearch.", status: status, action: action, response: response
|
|
156
156
|
end
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '7.3.
|
|
3
|
+
s.version = '7.3.5'
|
|
4
4
|
s.licenses = ['apache-2.0']
|
|
5
5
|
s.summary = "Logstash Output to 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: 7.3.
|
|
4
|
+
version: 7.3.5
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06-
|
|
11
|
+
date: 2017-06-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|