fluent-plugin-elasticsearch 4.1.4 → 4.2.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/.github/workflows/linux.yml +1 -1
- data/.github/workflows/macos.yml +1 -1
- data/.github/workflows/windows.yml +1 -1
- data/History.md +4 -0
- data/README.md +13 -0
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/elasticsearch_index_template.rb +31 -7
- data/lib/fluent/plugin/out_elasticsearch.rb +1 -0
- data/test/plugin/test_index_alias_template.json +11 -0
- data/test/plugin/test_index_template.json +25 -0
- data/test/plugin/test_out_elasticsearch.rb +617 -246
- metadata +6 -2
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.
|
4
|
+
version: 4.2.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: 2020-09-
|
13
|
+
date: 2020-09-23 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: fluentd
|
@@ -178,6 +178,8 @@ files:
|
|
178
178
|
- test/plugin/test_elasticsearch_tls.rb
|
179
179
|
- test/plugin/test_filter_elasticsearch_genid.rb
|
180
180
|
- test/plugin/test_in_elasticsearch.rb
|
181
|
+
- test/plugin/test_index_alias_template.json
|
182
|
+
- test/plugin/test_index_template.json
|
181
183
|
- test/plugin/test_oj_serializer.rb
|
182
184
|
- test/plugin/test_out_elasticsearch.rb
|
183
185
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|
@@ -216,6 +218,8 @@ test_files:
|
|
216
218
|
- test/plugin/test_elasticsearch_tls.rb
|
217
219
|
- test/plugin/test_filter_elasticsearch_genid.rb
|
218
220
|
- test/plugin/test_in_elasticsearch.rb
|
221
|
+
- test/plugin/test_index_alias_template.json
|
222
|
+
- test/plugin/test_index_template.json
|
219
223
|
- test/plugin/test_oj_serializer.rb
|
220
224
|
- test/plugin/test_out_elasticsearch.rb
|
221
225
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|