fluent-plugin-elasticsearch 4.0.8 → 4.1.1
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/issue-auto-closer.yml +12 -0
- data/History.md +23 -0
- data/README.ElasticsearchGenID.md +116 -0
- data/README.md +104 -5
- data/fluent-plugin-elasticsearch.gemspec +1 -1
- data/lib/fluent/plugin/elasticsearch_fallback_selector.rb +9 -0
- data/lib/fluent/plugin/elasticsearch_index_template.rb +19 -11
- data/lib/fluent/plugin/filter_elasticsearch_genid.rb +52 -0
- data/lib/fluent/plugin/out_elasticsearch.rb +64 -31
- data/test/plugin/test_elasticsearch_fallback_selector.rb +73 -0
- data/test/plugin/test_filter_elasticsearch_genid.rb +171 -0
- data/test/plugin/test_out_elasticsearch.rb +375 -72
- 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: 4.
|
4
|
+
version: 4.1.1
|
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-
|
13
|
+
date: 2020-07-20 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: fluentd
|
@@ -135,6 +135,7 @@ extra_rdoc_files: []
|
|
135
135
|
files:
|
136
136
|
- ".coveralls.yml"
|
137
137
|
- ".editorconfig"
|
138
|
+
- ".github/workflows/issue-auto-closer.yml"
|
138
139
|
- ".github/workflows/linux.yml"
|
139
140
|
- ".github/workflows/macos.yml"
|
140
141
|
- ".github/workflows/windows.yml"
|
@@ -146,6 +147,7 @@ files:
|
|
146
147
|
- ISSUE_TEMPLATE.md
|
147
148
|
- LICENSE.txt
|
148
149
|
- PULL_REQUEST_TEMPLATE.md
|
150
|
+
- README.ElasticsearchGenID.md
|
149
151
|
- README.ElasticsearchInput.md
|
150
152
|
- README.md
|
151
153
|
- Rakefile
|
@@ -158,6 +160,7 @@ files:
|
|
158
160
|
- lib/fluent/plugin/elasticsearch_constants.rb
|
159
161
|
- lib/fluent/plugin/elasticsearch_error.rb
|
160
162
|
- lib/fluent/plugin/elasticsearch_error_handler.rb
|
163
|
+
- lib/fluent/plugin/elasticsearch_fallback_selector.rb
|
161
164
|
- lib/fluent/plugin/elasticsearch_index_lifecycle_management.rb
|
162
165
|
- lib/fluent/plugin/elasticsearch_index_template.rb
|
163
166
|
- lib/fluent/plugin/elasticsearch_simple_sniffer.rb
|
@@ -170,6 +173,7 @@ files:
|
|
170
173
|
- test/helper.rb
|
171
174
|
- test/plugin/test_alias_template.json
|
172
175
|
- test/plugin/test_elasticsearch_error_handler.rb
|
176
|
+
- test/plugin/test_elasticsearch_fallback_selector.rb
|
173
177
|
- test/plugin/test_elasticsearch_index_lifecycle_management.rb
|
174
178
|
- test/plugin/test_elasticsearch_tls.rb
|
175
179
|
- test/plugin/test_filter_elasticsearch_genid.rb
|
@@ -207,6 +211,7 @@ test_files:
|
|
207
211
|
- test/helper.rb
|
208
212
|
- test/plugin/test_alias_template.json
|
209
213
|
- test/plugin/test_elasticsearch_error_handler.rb
|
214
|
+
- test/plugin/test_elasticsearch_fallback_selector.rb
|
210
215
|
- test/plugin/test_elasticsearch_index_lifecycle_management.rb
|
211
216
|
- test/plugin/test_elasticsearch_tls.rb
|
212
217
|
- test/plugin/test_filter_elasticsearch_genid.rb
|