fluent-plugin-elasticsearch 3.5.3 → 3.5.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.coveralls.yml +2 -2
- data/.editorconfig +9 -9
- data/.gitignore +18 -18
- data/.travis.yml +18 -18
- data/Gemfile +9 -9
- data/History.md +390 -384
- data/ISSUE_TEMPLATE.md +27 -27
- data/LICENSE.txt +201 -201
- data/PULL_REQUEST_TEMPLATE.md +10 -10
- data/README.md +1515 -1398
- data/Rakefile +11 -11
- data/appveyor.yml +30 -30
- data/fluent-plugin-elasticsearch.gemspec +31 -31
- data/lib/fluent/log-ext.rb +38 -38
- data/lib/fluent/plugin/elasticsearch_constants.rb +13 -13
- data/lib/fluent/plugin/elasticsearch_error.rb +5 -5
- data/lib/fluent/plugin/elasticsearch_error_handler.rb +122 -122
- data/lib/fluent/plugin/elasticsearch_index_template.rb +112 -110
- data/lib/fluent/plugin/elasticsearch_simple_sniffer.rb +10 -10
- data/lib/fluent/plugin/filter_elasticsearch_genid.rb +25 -25
- data/lib/fluent/plugin/oj_serializer.rb +22 -22
- data/lib/fluent/plugin/out_elasticsearch.rb +777 -776
- data/lib/fluent/plugin/out_elasticsearch_dynamic.rb +262 -262
- data/test/helper.rb +24 -24
- data/test/plugin/test_alias_template.json +8 -8
- data/test/plugin/test_elasticsearch_error_handler.rb +503 -503
- data/test/plugin/test_filter_elasticsearch_genid.rb +44 -44
- data/test/plugin/test_out_elasticsearch.rb +2720 -2720
- data/test/plugin/test_out_elasticsearch_dynamic.rb +1001 -1001
- data/test/plugin/test_template.json +23 -23
- data/test/test_log-ext.rb +35 -35
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed19ef5787d0bc17e067bbfdb9986b51e4e80f18b9cdce5409329502ae43442f
|
4
|
+
data.tar.gz: 992c701bf05aec15e10627c0bfd3fd3cc6b4919408b71a7219db2fb756cdbd5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ff1a3deca33be0d6226b895dcd27823006e7cf8492ad1ee247f29140b5d5206b7f0440dbdadadb16b4b01de7872d7935e1c69f8d3d909528dcc2b8eaf97bf7c
|
7
|
+
data.tar.gz: f09d12778f99b082f2d38b614b8e01fd1dca913dab2429af576433a9ca78d03eb26266712aeed596e4889622d3a52a4a36dd2fb2987289c43ce6cc4006b85ad0
|
data/.coveralls.yml
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
service_name: travis-ci
|
2
|
-
|
1
|
+
service_name: travis-ci
|
2
|
+
|
data/.editorconfig
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
# EditorConfig: http://EditorConfig.org
|
2
|
-
|
3
|
-
root = true
|
4
|
-
|
5
|
-
[*]
|
6
|
-
end_of_line = lf
|
7
|
-
insert_final_newline = true
|
8
|
-
indent_style = space
|
9
|
-
indent_size = 2
|
1
|
+
# EditorConfig: http://EditorConfig.org
|
2
|
+
|
3
|
+
root = true
|
4
|
+
|
5
|
+
[*]
|
6
|
+
end_of_line = lf
|
7
|
+
insert_final_newline = true
|
8
|
+
indent_style = space
|
9
|
+
indent_size = 2
|
data/.gitignore
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
*.gem
|
2
|
-
*.rbc
|
3
|
-
.bundle
|
4
|
-
.config
|
5
|
-
.yardoc
|
6
|
-
Gemfile.lock
|
7
|
-
InstalledFiles
|
8
|
-
_yardoc
|
9
|
-
coverage
|
10
|
-
doc/
|
11
|
-
lib/bundler/man
|
12
|
-
pkg
|
13
|
-
rdoc
|
14
|
-
spec/reports
|
15
|
-
test/tmp
|
16
|
-
test/version_tmp
|
17
|
-
tmp
|
18
|
-
.DS_Store
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
.DS_Store
|
data/.travis.yml
CHANGED
@@ -1,18 +1,18 @@
|
|
1
|
-
language: ruby
|
2
|
-
|
3
|
-
rvm:
|
4
|
-
- 2.1
|
5
|
-
- 2.2
|
6
|
-
- 2.3
|
7
|
-
- 2.4.5
|
8
|
-
- 2.5.3
|
9
|
-
- 2.6.0
|
10
|
-
|
11
|
-
gemfile:
|
12
|
-
- Gemfile
|
13
|
-
|
14
|
-
before_install:
|
15
|
-
- gem update --system=2.7.8
|
16
|
-
|
17
|
-
script: bundle exec rake test
|
18
|
-
sudo: false
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
rvm:
|
4
|
+
- 2.1
|
5
|
+
- 2.2
|
6
|
+
- 2.3
|
7
|
+
- 2.4.5
|
8
|
+
- 2.5.3
|
9
|
+
- 2.6.0
|
10
|
+
|
11
|
+
gemfile:
|
12
|
+
- Gemfile
|
13
|
+
|
14
|
+
before_install:
|
15
|
+
- gem update --system=2.7.8
|
16
|
+
|
17
|
+
script: bundle exec rake test
|
18
|
+
sudo: false
|
data/Gemfile
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
-
source 'https://rubygems.org'
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in fluent-plugin-elasticsearch.gemspec
|
4
|
-
gemspec
|
5
|
-
|
6
|
-
gem 'simplecov', require: false
|
7
|
-
gem 'coveralls', 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"
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Specify your gem's dependencies in fluent-plugin-elasticsearch.gemspec
|
4
|
+
gemspec
|
5
|
+
|
6
|
+
gem 'simplecov', require: false
|
7
|
+
gem 'coveralls', 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"
|
data/History.md
CHANGED
@@ -1,384 +1,390 @@
|
|
1
|
-
## Changelog [[tags]](https://github.com/uken/fluent-plugin-elasticsearch/tags)
|
2
|
-
|
3
|
-
### [Unreleased]
|
4
|
-
|
5
|
-
### 3.5.
|
6
|
-
-
|
7
|
-
|
8
|
-
|
9
|
-
-
|
10
|
-
|
11
|
-
### 3.5.
|
12
|
-
-
|
13
|
-
|
14
|
-
### 3.5.
|
15
|
-
-
|
16
|
-
|
17
|
-
### 3.
|
18
|
-
-
|
19
|
-
|
20
|
-
### 3.
|
21
|
-
-
|
22
|
-
|
23
|
-
### 3.4.
|
24
|
-
-
|
25
|
-
|
26
|
-
### 3.4.
|
27
|
-
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
-
|
48
|
-
|
49
|
-
### 3.
|
50
|
-
-
|
51
|
-
|
52
|
-
### 3.2.
|
53
|
-
-
|
54
|
-
|
55
|
-
### 3.2.
|
56
|
-
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
- Add
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
-
|
89
|
-
|
90
|
-
### 2.12.
|
91
|
-
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
-
|
102
|
-
-
|
103
|
-
|
104
|
-
### 2.12.
|
105
|
-
-
|
106
|
-
|
107
|
-
|
108
|
-
-
|
109
|
-
|
110
|
-
### 2.
|
111
|
-
-
|
112
|
-
|
113
|
-
### 2.11.
|
114
|
-
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
-
|
123
|
-
|
124
|
-
### 2.11.
|
125
|
-
-
|
126
|
-
|
127
|
-
### 2.11.
|
128
|
-
-
|
129
|
-
|
130
|
-
### 2.11.
|
131
|
-
-
|
132
|
-
|
133
|
-
### 2.11.
|
134
|
-
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
-
|
142
|
-
|
143
|
-
### 2.
|
144
|
-
-
|
145
|
-
|
146
|
-
### 2.
|
147
|
-
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
-
|
155
|
-
|
156
|
-
### 2.10.
|
157
|
-
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
- Uplift Merge pull request #
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
-
|
172
|
-
|
173
|
-
### 2.
|
174
|
-
-
|
175
|
-
|
176
|
-
### 2.
|
177
|
-
-
|
178
|
-
|
179
|
-
### 2.8.
|
180
|
-
-
|
181
|
-
|
182
|
-
### 2.8.
|
183
|
-
-
|
184
|
-
|
185
|
-
### 2.8.
|
186
|
-
-
|
187
|
-
|
188
|
-
### 2.8.
|
189
|
-
-
|
190
|
-
|
191
|
-
### 2.8.
|
192
|
-
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
-
|
200
|
-
|
201
|
-
### 2.
|
202
|
-
-
|
203
|
-
|
204
|
-
### 2.
|
205
|
-
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
-
|
213
|
-
|
214
|
-
### 2.
|
215
|
-
-
|
216
|
-
|
217
|
-
### 2.
|
218
|
-
-
|
219
|
-
|
220
|
-
### 2.
|
221
|
-
-
|
222
|
-
|
223
|
-
### 2.
|
224
|
-
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
-
|
232
|
-
|
233
|
-
### 2.
|
234
|
-
-
|
235
|
-
|
236
|
-
### 2.0.
|
237
|
-
-
|
238
|
-
|
239
|
-
### 2.0.
|
240
|
-
- Add
|
241
|
-
|
242
|
-
### 2.0.0
|
243
|
-
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
- add
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
-
|
263
|
-
|
264
|
-
###
|
265
|
-
-
|
266
|
-
|
267
|
-
###
|
268
|
-
-
|
269
|
-
|
270
|
-
### 1.9.
|
271
|
-
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
-
|
279
|
-
|
280
|
-
### 1.9.
|
281
|
-
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
-
|
297
|
-
|
298
|
-
|
299
|
-
-
|
300
|
-
|
301
|
-
### 1.
|
302
|
-
- add `
|
303
|
-
- add `
|
304
|
-
-
|
305
|
-
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
-
|
311
|
-
- add `
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
-
|
318
|
-
|
319
|
-
### 1.
|
320
|
-
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
-
|
332
|
-
|
333
|
-
### 0.
|
334
|
-
-
|
335
|
-
|
336
|
-
### 0.
|
337
|
-
- Add
|
338
|
-
|
339
|
-
### 0.
|
340
|
-
-
|
341
|
-
|
342
|
-
### 0.
|
343
|
-
-
|
344
|
-
|
345
|
-
### 0.
|
346
|
-
-
|
347
|
-
|
348
|
-
### 0.
|
349
|
-
-
|
350
|
-
|
351
|
-
|
352
|
-
- fix
|
353
|
-
|
354
|
-
### 0.
|
355
|
-
- add
|
356
|
-
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
- add
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
-
|
376
|
-
|
377
|
-
### 0.1.
|
378
|
-
- add
|
379
|
-
|
380
|
-
### 0.1.
|
381
|
-
-
|
382
|
-
|
383
|
-
### 0.1.
|
384
|
-
|
1
|
+
## Changelog [[tags]](https://github.com/uken/fluent-plugin-elasticsearch/tags)
|
2
|
+
|
3
|
+
### [Unreleased]
|
4
|
+
|
5
|
+
### 3.5.4
|
6
|
+
- Add FAQ for Fluentd seems to hang if it unable to connect Elasticsearch (#617)
|
7
|
+
- Check bulk_message size before appending (#616)
|
8
|
+
- Add FAQ for Elasticsearch index mapping glitch (#614)
|
9
|
+
- Display retry counts and interval (#613)
|
10
|
+
|
11
|
+
### 3.5.3
|
12
|
+
- Handle nil items response (#611)
|
13
|
+
|
14
|
+
### 3.5.2
|
15
|
+
- Fix `@meta_config_map` creation timing (#592)
|
16
|
+
|
17
|
+
### 3.5.1
|
18
|
+
- Configurable split request size threshold (#586)
|
19
|
+
|
20
|
+
### 3.5.0
|
21
|
+
- Adopt Elasticsearch ruby client v7 loggable class (#583)
|
22
|
+
|
23
|
+
### 3.4.3
|
24
|
+
- Add fail_on_putting_template_retry_exceed config (#579)
|
25
|
+
|
26
|
+
### 3.4.2
|
27
|
+
- Comparing DEFAULT_TYPE_NAME_ES_7x to target_type instead of type_name (#573)
|
28
|
+
|
29
|
+
### 3.4.1
|
30
|
+
- Handle non-String value on parse_time (#570)
|
31
|
+
|
32
|
+
### 3.4.0
|
33
|
+
- Check exclusive feature on #configure (#569)
|
34
|
+
- Modify FAQ for highly load k8s EFK stack (#566)
|
35
|
+
- Add FAQ for high load k8s EFK stack (#564)
|
36
|
+
|
37
|
+
### 3.3.3
|
38
|
+
- Add unit test for exception message (#563)
|
39
|
+
- Add ignore_exceptions config (#562)
|
40
|
+
|
41
|
+
### 3.3.2
|
42
|
+
- Fix support for host, hosts placeholders (#560)
|
43
|
+
- typo fixes in README.md (#559)
|
44
|
+
|
45
|
+
### 3.3.1
|
46
|
+
- add new option to suppress doc wrapping (#557)
|
47
|
+
- Include 2 (#555)
|
48
|
+
|
49
|
+
### 3.3.0
|
50
|
+
- Support builtin placeholders for host and hosts parameter (#554)
|
51
|
+
|
52
|
+
### 3.2.4
|
53
|
+
- Pass chunk for built in placeholders (#553)
|
54
|
+
|
55
|
+
### 3.2.3
|
56
|
+
- Expose exception backtrace for typhoeus gem loading error (#550)
|
57
|
+
|
58
|
+
### 3.2.2
|
59
|
+
- Don't validate ES cliuent version under dry-run mode (#547)
|
60
|
+
|
61
|
+
### 3.2.1
|
62
|
+
- Don't attempt to connect to Elasticsearch in dry run mode (#543)
|
63
|
+
- Add FAQ for typhoeus gem installation (#544)
|
64
|
+
|
65
|
+
### 3.2.0
|
66
|
+
- Split huge record requests (#539)
|
67
|
+
|
68
|
+
### 3.1.1
|
69
|
+
- Add document for custom_headers (#538)
|
70
|
+
- out_elasticsearch: Add custom_headers parameter (#529)
|
71
|
+
- Bundle irb on Ruby 2.6 or later (#537)
|
72
|
+
|
73
|
+
### 3.1.0
|
74
|
+
- Retry obtaining Elasticsearch version (#532)
|
75
|
+
- Fix broken id links (#530)
|
76
|
+
|
77
|
+
### 3.0.2
|
78
|
+
- appveyor: Remove Ruby 2.1 CI targets on AppVeyor (#524)
|
79
|
+
- Follow removal of _routing field change on recent Elasticsearch (#523)
|
80
|
+
- Travis: Tweak to use Ruby versions (#522)
|
81
|
+
|
82
|
+
### 3.0.1
|
83
|
+
- Remove needless Elasticsearch version detection (#520)
|
84
|
+
|
85
|
+
### 3.0.0
|
86
|
+
- Use fluentd core retry mechanism (#519)
|
87
|
+
- Depends on builtin retrying mechanism (#518)
|
88
|
+
- Loosen ConnectionRetryFailure condition when flush_thread_count > 1 and depends on Fluentd core retrying mechanism (#516)
|
89
|
+
|
90
|
+
### 2.12.5
|
91
|
+
- Ensure sniffer class constants definition before calling #client (#515)
|
92
|
+
|
93
|
+
### 2.12.4
|
94
|
+
- #506 Rollover index will be in effect in case of template overwrite also. (#513)
|
95
|
+
|
96
|
+
### 2.12.3
|
97
|
+
- Added log_es_400_reason configuration item (#511)
|
98
|
+
- Allow a user to specify the rollover index date pattern (#510)
|
99
|
+
|
100
|
+
### 2.12.2
|
101
|
+
- Verify connection at startup (#504)
|
102
|
+
- Add faq for glob pattern tag routing (#502)
|
103
|
+
|
104
|
+
### 2.12.1
|
105
|
+
- Make configurable unrecoverable types (#501)
|
106
|
+
- Add FAQ for TLS enabled nginx proxy TLS version incompatibility trouble (#496)
|
107
|
+
- Add FAQs (#492)
|
108
|
+
- Remove issuestats.com badges (#489)
|
109
|
+
|
110
|
+
### 2.12.0
|
111
|
+
- Decoupling the custom template and rollover index creation #485 (#486)
|
112
|
+
|
113
|
+
### 2.11.11
|
114
|
+
- Handle error not to acquire version information (#479)
|
115
|
+
|
116
|
+
### 2.11.10
|
117
|
+
- Verbose error reason output (#469)
|
118
|
+
|
119
|
+
### 2.11.9
|
120
|
+
- Use ConnectionRetryFailure in plugin specific retrying for consistency (#468)
|
121
|
+
- Remove outdated generating hash_id_key code (#466)
|
122
|
+
- Tweak behavior for UnrecoverableError and #detect_es_major_version (#465)
|
123
|
+
|
124
|
+
### 2.11.8
|
125
|
+
- Serialize requests with Oj (#464)
|
126
|
+
|
127
|
+
### 2.11.7
|
128
|
+
- Add mechanism to detect ES and its client version mismatch (#463)
|
129
|
+
|
130
|
+
### 2.11.6
|
131
|
+
- 355 customize template (#431)
|
132
|
+
|
133
|
+
### 2.11.5
|
134
|
+
- Uplift Merge pull request #459 from richm/v0.12-simple-sniffer (#461)
|
135
|
+
|
136
|
+
### 2.11.4
|
137
|
+
- Persistent backend (#456)
|
138
|
+
|
139
|
+
### 2.11.3
|
140
|
+
- Implement the `include_index_in_url` option for out_elasticsearch (#451)
|
141
|
+
- Add an option `include_index_in_url` to allow URL-based conrtrols (#450)
|
142
|
+
|
143
|
+
### 2.11.2
|
144
|
+
- Strictness scheme (#445)
|
145
|
+
|
146
|
+
### 2.11.0
|
147
|
+
- Uplift Merge pull request #437 from jcantrill/fix_bulk_count (#438)
|
148
|
+
|
149
|
+
### 2.10.5
|
150
|
+
- Uplift Merge pull request #435 from jcantrill/add_trace_logging (#436)
|
151
|
+
|
152
|
+
### 2.10.4
|
153
|
+
- Use Fluent::UnrecoverableError as unrecoverable error class ancestors (#433)
|
154
|
+
- Add parameter validation for retrying template installation (#429)
|
155
|
+
|
156
|
+
### 2.10.3
|
157
|
+
- Add retry mechanism for template installation (#428)
|
158
|
+
|
159
|
+
### 2.10.2
|
160
|
+
- Use logstash_prefix_separator on elasticsearch_dynamic (#427)
|
161
|
+
|
162
|
+
### 2.10.1
|
163
|
+
- Uplift Merge pull request #419 from jcantrill/retry_prefix (#421)
|
164
|
+
- Uplift Merge pull request #418 from jcantrill/emit_exception (#420)
|
165
|
+
|
166
|
+
### 2.10.0
|
167
|
+
- Uplift Merge pull request #405 from jcantrill/sanitize_bulk (#414)
|
168
|
+
|
169
|
+
### 2.9.2
|
170
|
+
- Uplift Merge pull request #410 from richm/v0.12-consistent-errors-and-tests (#411)
|
171
|
+
- Add correct link for include_timestamp (#408)
|
172
|
+
|
173
|
+
### 2.9.1
|
174
|
+
- Uplift Merge pull request #406 from richm/v0.12-successes-duplicates-no-retry (#407)
|
175
|
+
|
176
|
+
### 2.9.0
|
177
|
+
- DLQ revisited v1 uplifted #398, #402 (#404)
|
178
|
+
|
179
|
+
### 2.8.6
|
180
|
+
- auth: Fix missing auth tokens after reloading connections (#394)
|
181
|
+
|
182
|
+
### 2.8.5
|
183
|
+
- Add deprecated option into content_type parameter (#391)
|
184
|
+
|
185
|
+
### 2.8.4
|
186
|
+
- Use nanosecond precision in elasticsearch_dynamic (#387)
|
187
|
+
|
188
|
+
### 2.8.3
|
189
|
+
- Specify SSL/TLS version in out_elasticsearch_dynamic (#385)
|
190
|
+
|
191
|
+
### 2.8.2
|
192
|
+
- Revert content type header default value (#383)
|
193
|
+
|
194
|
+
### 2.8.1
|
195
|
+
- Restore default value of type name #(377)
|
196
|
+
|
197
|
+
### 2.8.0
|
198
|
+
- Remove outdated generating hash id support module (#373)
|
199
|
+
- Check Elasticsearch major version (#371)
|
200
|
+
|
201
|
+
### 2.7.0
|
202
|
+
- Configureable content type (#367)
|
203
|
+
|
204
|
+
### 2.6.1
|
205
|
+
- Prevent error when using template in elasticsearch_dynamic for elementally use case (#363)
|
206
|
+
|
207
|
+
### 2.6.0
|
208
|
+
- Handle high precision time format when using custom time_key (#360)
|
209
|
+
|
210
|
+
### 2.5.0
|
211
|
+
- Using nested record in `id_key`, `parent_key`, and `routing_key` (#351)
|
212
|
+
- Fix inverted case of a proper noun "Elasticsearch" (#349)
|
213
|
+
|
214
|
+
### 2.4.1
|
215
|
+
- Add config parameter to enable elasticsearch-ruby's transporter logging (#342)
|
216
|
+
|
217
|
+
### 2.4.0
|
218
|
+
- Add built-in placeholders support against type_name parameter (#338)
|
219
|
+
|
220
|
+
### 2.3.0
|
221
|
+
- Allow overwriting existing index template (#239)
|
222
|
+
|
223
|
+
### 2.2.0
|
224
|
+
- GA release 2.2.0.
|
225
|
+
|
226
|
+
### 2.2.0.rc.1
|
227
|
+
- Separate generate hash id module and bundled new plugin for generating unique hash id (#331)
|
228
|
+
|
229
|
+
### 2.1.1
|
230
|
+
- Raise ConfigError when specifying different @hash_config.hash_id_key and id_key configration (#327)
|
231
|
+
- Small typo fix in README.md (#325)
|
232
|
+
|
233
|
+
### 2.1.0
|
234
|
+
- Retry on certain errors from Elasticsearch (#322)
|
235
|
+
|
236
|
+
### 2.0.1
|
237
|
+
- Releasing generating hash id mechanism to avoid records duplication feature.
|
238
|
+
|
239
|
+
### 2.0.1.rc.1
|
240
|
+
- Add generating hash id mechanism to avoid records duplication (#318)
|
241
|
+
|
242
|
+
### 2.0.0
|
243
|
+
- Release for Fluentd v0.14 stable.
|
244
|
+
|
245
|
+
### 2.0.0.rc.7
|
246
|
+
- Add `include_timestamp` option (#310)
|
247
|
+
|
248
|
+
### 2.0.0.rc.6
|
249
|
+
- Improve documentation (#304)
|
250
|
+
- Handle dynamic_config misconfigurations (#305)
|
251
|
+
- Escape basic authentication user information placeholders (#306)
|
252
|
+
|
253
|
+
### 2.0.0.rc.5
|
254
|
+
- make configurable with `ssl_version` parameter (#299)
|
255
|
+
- add `logstash_prefix_separator` config parameter (#297)
|
256
|
+
|
257
|
+
### 2.0.0.rc.4
|
258
|
+
- fix license identifier in gemspec (#294)
|
259
|
+
|
260
|
+
### 2.0.0.rc.3
|
261
|
+
- add built-in placeholders support (#288, #293)
|
262
|
+
- permit multi workers feature (#291)
|
263
|
+
|
264
|
+
### 2.0.0.rc.2
|
265
|
+
- add pipeline parameter (#290)
|
266
|
+
|
267
|
+
### 2.0.0.rc.1
|
268
|
+
- Use v0.14 API to support nanosecond precision (#223)
|
269
|
+
|
270
|
+
### 1.9.5
|
271
|
+
- sub-second time precision [(#249)](https://github.com/uken/fluent-plugin-elasticsearch/pull/249)
|
272
|
+
|
273
|
+
### 1.9.4
|
274
|
+
- Include 'Content-Type' header in `transport_options`
|
275
|
+
|
276
|
+
### 1.9.3
|
277
|
+
- Use latest elasticsearch-ruby (#240)
|
278
|
+
- Log ES response errors (#230)
|
279
|
+
|
280
|
+
### 1.9.2
|
281
|
+
- Fix elasticsearch_dynamic for v0.14 (#224)
|
282
|
+
|
283
|
+
### 1.9.1
|
284
|
+
- Cast `reload_*` configs in out_elasticsearch_dynamic to bool (#220)
|
285
|
+
|
286
|
+
### 1.9.0
|
287
|
+
- add `time_parse_error_tag` (#211)
|
288
|
+
- add `reconnect_on_error` (#214)
|
289
|
+
|
290
|
+
### 1.9.0.rc.1
|
291
|
+
- Optimize output plugins (#203)
|
292
|
+
|
293
|
+
### 1.8.0
|
294
|
+
- fix typo in defaults for ssl_verify on elasticsearch_dynamic (#202)
|
295
|
+
- add support for `templates` (#196)
|
296
|
+
- rename `send` method to `send_bulk` (#206)
|
297
|
+
|
298
|
+
### 1.7.0
|
299
|
+
- add support for `template_name` and `template_file` (#194)
|
300
|
+
|
301
|
+
### 1.6.0
|
302
|
+
- add support for dot separated `target_index_key` and `target_type_key` (#175)
|
303
|
+
- add `remove_keys_on_update` and `remove_keys_on_update_key` (#189)
|
304
|
+
- fix support for fluentd v0.14 (#191)
|
305
|
+
- remove support for elasticsearch v2 for now (#177)
|
306
|
+
|
307
|
+
### 1.5.0
|
308
|
+
- add `routing_key` (#158)
|
309
|
+
- add `time_key_exclude_timestamp` to exclude `@timestamp` (#161)
|
310
|
+
- convert index names to lowercase (#163)
|
311
|
+
- add `remove_keys` (#164)
|
312
|
+
- add `flatten_hashes` (#168)
|
313
|
+
- add `target_type_key` (#169)
|
314
|
+
|
315
|
+
### 1.4.0
|
316
|
+
- add `target_index_key` to specify target index (#153)
|
317
|
+
- add `time_key_format` for faster time format parsing (#154)
|
318
|
+
|
319
|
+
### 1.3.0
|
320
|
+
- add `write_operation`
|
321
|
+
|
322
|
+
### 1.2.1
|
323
|
+
- fix `resurrect_after` in out_elasticsearch_dynamic
|
324
|
+
|
325
|
+
### 1.2.0
|
326
|
+
- out_elasticsearch_dynamic get memory improvement and fix for race condition (#133)
|
327
|
+
- Add `resurrect_after` option (#136)
|
328
|
+
|
329
|
+
### 1.1.0
|
330
|
+
- Support SSL client verification and custom CA file (#123)
|
331
|
+
- Release experimental `type elasticsearch_dynamic` (#127)
|
332
|
+
|
333
|
+
### 1.0.0
|
334
|
+
- password config param is now marked as secret and won't be displayed in logs.
|
335
|
+
|
336
|
+
### 0.9.0
|
337
|
+
- Add `ssl_verify` option (#108)
|
338
|
+
|
339
|
+
### 0.8.0
|
340
|
+
- Replace Patron with Excon HTTP client (#93)
|
341
|
+
|
342
|
+
### 0.7.0
|
343
|
+
- Add new option `time_key` (#85)
|
344
|
+
|
345
|
+
### 0.6.1
|
346
|
+
- 0.10.43 is minimum version required of fluentd (#79)
|
347
|
+
|
348
|
+
### 0.6.0
|
349
|
+
- added `reload_on_failure` and `reload_connections` flags (#78)
|
350
|
+
|
351
|
+
### 0.5.1
|
352
|
+
- fix legacy hosts option, port should be optional (#75)
|
353
|
+
|
354
|
+
### 0.5.0
|
355
|
+
- add full connection URI support (#65)
|
356
|
+
- use `@timestamp` for index (#41)
|
357
|
+
- add support for elasticsearch gem version 1 (#71)
|
358
|
+
- fix connection reset & retry when connection is lost (#67)
|
359
|
+
|
360
|
+
### 0.4.0
|
361
|
+
- add `request_timeout` config (#59)
|
362
|
+
- fix lockup when non-hash values are sent (#52)
|
363
|
+
|
364
|
+
### 0.3.1
|
365
|
+
- force using patron (#46)
|
366
|
+
- do not generate @timestamp if already part of message (#35)
|
367
|
+
|
368
|
+
### 0.3.0
|
369
|
+
- add `parent_key` option (#28)
|
370
|
+
- have travis-ci build on multiple rubies (#30)
|
371
|
+
- add `utc_index` and `hosts` options, switch to using `elasticsearch` gem (#26, #29)
|
372
|
+
|
373
|
+
### 0.2.0
|
374
|
+
- fix encoding issues with JSON conversion and again when sending to elasticsearch (#19, #21)
|
375
|
+
- add logstash_dateformat option (#20)
|
376
|
+
|
377
|
+
### 0.1.4
|
378
|
+
- add logstash_prefix option
|
379
|
+
|
380
|
+
### 0.1.3
|
381
|
+
- raising an exception on non-success response from elasticsearch
|
382
|
+
|
383
|
+
### 0.1.2
|
384
|
+
- add id_key option
|
385
|
+
|
386
|
+
### 0.1.1
|
387
|
+
- fix timezone in logstash key
|
388
|
+
|
389
|
+
### 0.1.0
|
390
|
+
- Initial gem release.
|