fluent-plugin-elasticsearch 3.5.6 → 3.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +16 -7
- data/History.md +6 -0
- data/README.md +66 -0
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/gemfiles/Gemfile.ilm +10 -0
- data/lib/fluent/plugin/default-ilm-policy.json +14 -0
- data/lib/fluent/plugin/elasticsearch_index_lifecycle_management.rb +67 -0
- data/lib/fluent/plugin/elasticsearch_index_template.rb +81 -23
- data/lib/fluent/plugin/out_elasticsearch.rb +54 -13
- data/test/plugin/test_elasticsearch_index_lifecycle_management.rb +63 -0
- data/test/plugin/test_out_elasticsearch.rb +617 -7
- metadata +7 -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: 3.
|
4
|
+
version: 3.6.0
|
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: 2019-11-
|
12
|
+
date: 2019-11-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fluentd
|
@@ -145,10 +145,13 @@ files:
|
|
145
145
|
- Rakefile
|
146
146
|
- appveyor.yml
|
147
147
|
- fluent-plugin-elasticsearch.gemspec
|
148
|
+
- gemfiles/Gemfile.ilm
|
148
149
|
- lib/fluent/log-ext.rb
|
150
|
+
- lib/fluent/plugin/default-ilm-policy.json
|
149
151
|
- lib/fluent/plugin/elasticsearch_constants.rb
|
150
152
|
- lib/fluent/plugin/elasticsearch_error.rb
|
151
153
|
- lib/fluent/plugin/elasticsearch_error_handler.rb
|
154
|
+
- lib/fluent/plugin/elasticsearch_index_lifecycle_management.rb
|
152
155
|
- lib/fluent/plugin/elasticsearch_index_template.rb
|
153
156
|
- lib/fluent/plugin/elasticsearch_simple_sniffer.rb
|
154
157
|
- lib/fluent/plugin/filter_elasticsearch_genid.rb
|
@@ -158,6 +161,7 @@ files:
|
|
158
161
|
- test/helper.rb
|
159
162
|
- test/plugin/test_alias_template.json
|
160
163
|
- test/plugin/test_elasticsearch_error_handler.rb
|
164
|
+
- test/plugin/test_elasticsearch_index_lifecycle_management.rb
|
161
165
|
- test/plugin/test_filter_elasticsearch_genid.rb
|
162
166
|
- test/plugin/test_out_elasticsearch.rb
|
163
167
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|
@@ -190,6 +194,7 @@ test_files:
|
|
190
194
|
- test/helper.rb
|
191
195
|
- test/plugin/test_alias_template.json
|
192
196
|
- test/plugin/test_elasticsearch_error_handler.rb
|
197
|
+
- test/plugin/test_elasticsearch_index_lifecycle_management.rb
|
193
198
|
- test/plugin/test_filter_elasticsearch_genid.rb
|
194
199
|
- test/plugin/test_out_elasticsearch.rb
|
195
200
|
- test/plugin/test_out_elasticsearch_dynamic.rb
|