logstash-output-elasticsearch 7.2.1-java → 7.2.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 +3 -0
- data/lib/logstash/outputs/elasticsearch.rb +10 -0
- 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: 21f1b50d8253533385e29f4317d2c4354ebf6231
|
|
4
|
+
data.tar.gz: ccb251840a4bbf11a3b21bc98a83cf3aaac18198
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f89f93ce95860b1119c274227ad8a760f67610e2adffc6f12e4cd2b5809be1e00b717ad59c1c60d849e18aea13a69426ee83828aa890dc1e233136aa842c70f9
|
|
7
|
+
data.tar.gz: a4abd5d2ad750e811d850062337d8d595f5f6e84c53dbc86b5d98878835c3db9486d9b854de52f411428f954ce901fc90d31c29333b8c0f2dd44e4be2a776caa
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@ require "thread" # for safe queueing
|
|
|
10
10
|
require "uri" # for escaping user input
|
|
11
11
|
require "forwardable"
|
|
12
12
|
|
|
13
|
+
# .Compatibility Note
|
|
14
|
+
# [NOTE]
|
|
15
|
+
# ================================================================================
|
|
16
|
+
# Starting with Elasticsearch 5.3, there's an {ref}modules-http.html[HTTP setting]
|
|
17
|
+
# called `http.content_type.required`. If this option is set to `true`, and you
|
|
18
|
+
# are using Logstash 2.4 through 5.2, you need to update the Elasticsearch output
|
|
19
|
+
# plugin to version 6.2.5 or higher.
|
|
20
|
+
#
|
|
21
|
+
# ================================================================================
|
|
22
|
+
#
|
|
13
23
|
# This plugin is the recommended method of storing logs in Elasticsearch.
|
|
14
24
|
# If you plan on using the Kibana web interface, you'll want to use this output.
|
|
15
25
|
#
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-output-elasticsearch'
|
|
3
|
-
s.version = '7.2.
|
|
3
|
+
s.version = '7.2.2'
|
|
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.2.
|
|
4
|
+
version: 7.2.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-03-
|
|
11
|
+
date: 2017-03-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|