fluent-plugin-elasticsearch 2.8.4 → 2.8.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +7 -2
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/out_elasticsearch.rb +5 -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: bfb94e3acf5abed14167d45d69f824841fbd6b225ffa1f3f0d14c4a4a5d0f6df
|
4
|
+
data.tar.gz: acc462fba9cd5684598c0ec211a244ed971594862d16d56c29f918be9ec1c5d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8cf48e798b683eb8edc6bcf1d2052861bfa62a4964e5a96c3afa31eb54eaededc659a497da1038398e1761bdefcf7fc83a8ac0bc93ce82b4c3f79d9518417be
|
7
|
+
data.tar.gz: b8fc6422a1e2f48ac5628b811b0d8923cac12107254dc5b9618d6f0b86aa6aede075c74cb5fb7cc40e53b76bec6a4c4196bfdc19bc63da547b6ddf9d2a0e18ce
|
data/History.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
## Changelog [[tags]](https://github.com/uken/fluent-plugin-elasticsearch/tags)
|
2
2
|
|
3
3
|
### [Unreleased]
|
4
|
-
|
5
|
-
|
4
|
+
|
5
|
+
### 2.8.5
|
6
|
+
- Add deprecated option into content_type parameter (#391)
|
6
7
|
|
7
8
|
### 2.8.4
|
8
9
|
- Use nanosecond precision in elasticsearch_dynamic (#387)
|
@@ -95,6 +96,10 @@
|
|
95
96
|
### 1.9.4
|
96
97
|
- Include 'Content-Type' header in `transport_options`
|
97
98
|
|
99
|
+
### 1.9.3
|
100
|
+
- Use latest elasticsearch-ruby (#240)
|
101
|
+
- Log ES response errors (#230)
|
102
|
+
|
98
103
|
### 1.9.2
|
99
104
|
- Fix elasticsearch_dynamic for v0.14 (#224)
|
100
105
|
|
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = 'fluent-plugin-elasticsearch'
|
6
|
-
s.version = '2.8.
|
6
|
+
s.version = '2.8.5'
|
7
7
|
s.authors = ['diogo', 'pitr']
|
8
8
|
s.email = ['pitr.vern@gmail.com', 'me@diogoterror.com']
|
9
9
|
s.description = %q{Elasticsearch output plugin for Fluent event collector}
|
@@ -80,7 +80,11 @@ EOC
|
|
80
80
|
config_param :reconnect_on_error, :bool, :default => false
|
81
81
|
config_param :pipeline, :string, :default => nil
|
82
82
|
config_param :with_transporter_log, :bool, :default => false
|
83
|
-
config_param :content_type, :enum, list: [:"application/json", :"application/x-ndjson"], :default => :"application/json"
|
83
|
+
config_param :content_type, :enum, list: [:"application/json", :"application/x-ndjson"], :default => :"application/json",
|
84
|
+
:deprecated => <<EOC
|
85
|
+
elasticsearch gem v6.0.2 starts to use correct Content-Type. Please upgrade elasticserach gem and stop to use this option.
|
86
|
+
see: https://github.com/elastic/elasticsearch-ruby/pull/514
|
87
|
+
EOC
|
84
88
|
|
85
89
|
config_section :buffer do
|
86
90
|
config_set_default :@type, DEFAULT_BUFFER_TYPE
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-elasticsearch
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.
|
4
|
+
version: 2.8.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- diogo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-03-
|
12
|
+
date: 2018-03-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fluentd
|