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