fluent-plugin-elasticsearch 4.1.0 → 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 +19 -0
- data/README.ElasticsearchGenID.md +2 -2
- data/README.md +66 -14
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/elasticsearch_index_template.rb +49 -17
- data/lib/fluent/plugin/out_elasticsearch.rb +32 -13
- data/test/plugin/test_in_elasticsearch.rb +14 -9
- 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 +656 -348
- metadata +9 -5
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
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
|
8
8
|
- pitr
|
9
9
|
- Hiroshi Hatake
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2020-
|
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
|
@@ -188,7 +190,7 @@ licenses:
|
|
188
190
|
- Apache-2.0
|
189
191
|
metadata:
|
190
192
|
changelog_uri: https://github.com/uken/fluent-plugin-elasticsearch/blob/master/History.md
|
191
|
-
post_install_message:
|
193
|
+
post_install_message:
|
192
194
|
rdoc_options: []
|
193
195
|
require_paths:
|
194
196
|
- lib
|
@@ -204,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
204
206
|
version: '0'
|
205
207
|
requirements: []
|
206
208
|
rubygems_version: 3.1.2
|
207
|
-
signing_key:
|
209
|
+
signing_key:
|
208
210
|
specification_version: 4
|
209
211
|
summary: Elasticsearch output plugin for Fluent event collector
|
210
212
|
test_files:
|
@@ -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
|