fluent-plugin-elasticsearch 4.3.3 → 5.0.0
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/.travis.yml +0 -4
- data/History.md +7 -0
- data/README.ElasticsearchInput.md +1 -1
- data/README.Troubleshooting.md +601 -0
- data/README.md +15 -584
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/out_elasticsearch_data_stream.rb +215 -0
- data/test/plugin/test_out_elasticsearch_data_stream.rb +337 -0
- metadata +6 -3
- data/gemfiles/Gemfile.without.ilm +0 -10
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:
|
4
|
+
version: 5.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- diogo
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: fluentd
|
@@ -151,12 +151,12 @@ files:
|
|
151
151
|
- PULL_REQUEST_TEMPLATE.md
|
152
152
|
- README.ElasticsearchGenID.md
|
153
153
|
- README.ElasticsearchInput.md
|
154
|
+
- README.Troubleshooting.md
|
154
155
|
- README.md
|
155
156
|
- Rakefile
|
156
157
|
- appveyor.yml
|
157
158
|
- fluent-plugin-elasticsearch.gemspec
|
158
159
|
- gemfiles/Gemfile.elasticsearch.v6
|
159
|
-
- gemfiles/Gemfile.without.ilm
|
160
160
|
- lib/fluent/log-ext.rb
|
161
161
|
- lib/fluent/plugin/default-ilm-policy.json
|
162
162
|
- lib/fluent/plugin/elasticsearch_constants.rb
|
@@ -171,6 +171,7 @@ files:
|
|
171
171
|
- lib/fluent/plugin/in_elasticsearch.rb
|
172
172
|
- lib/fluent/plugin/oj_serializer.rb
|
173
173
|
- lib/fluent/plugin/out_elasticsearch.rb
|
174
|
+
- lib/fluent/plugin/out_elasticsearch_data_stream.rb
|
174
175
|
- lib/fluent/plugin/out_elasticsearch_dynamic.rb
|
175
176
|
- test/helper.rb
|
176
177
|
- test/plugin/test_alias_template.json
|
@@ -184,6 +185,7 @@ files:
|
|
184
185
|
- test/plugin/test_index_template.json
|
185
186
|
- test/plugin/test_oj_serializer.rb
|
186
187
|
- test/plugin/test_out_elasticsearch.rb
|
188
|
+
- test/plugin/test_out_elasticsearch_data_stream.rb
|
187
189
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|
188
190
|
- test/plugin/test_template.json
|
189
191
|
- test/test_log-ext.rb
|
@@ -224,6 +226,7 @@ test_files:
|
|
224
226
|
- test/plugin/test_index_template.json
|
225
227
|
- test/plugin/test_oj_serializer.rb
|
226
228
|
- test/plugin/test_out_elasticsearch.rb
|
229
|
+
- test/plugin/test_out_elasticsearch_data_stream.rb
|
227
230
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|
228
231
|
- test/plugin/test_template.json
|
229
232
|
- test/test_log-ext.rb
|
@@ -1,10 +0,0 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in fluent-plugin-elasticsearch.gemspec
|
4
|
-
gemspec :path => "../"
|
5
|
-
|
6
|
-
gem 'simplecov', require: false
|
7
|
-
gem 'coveralls', ">= 0.8.0", require: false
|
8
|
-
gem 'strptime', require: false if RUBY_ENGINE == "ruby" && RUBY_VERSION =~ /^2/
|
9
|
-
gem "irb" if RUBY_ENGINE == "ruby" && RUBY_VERSION >= "2.6"
|
10
|
-
gem "oj"
|