fluentd 0.14.3 → 0.14.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fluentd might be problematic. Click here for more details.

Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/ChangeLog +59 -1131
  3. data/Rakefile +15 -0
  4. data/appveyor.yml +2 -2
  5. data/example/multi_filters.conf +61 -0
  6. data/fluentd.gemspec +19 -16
  7. data/lib/fluent/agent.rb +3 -0
  8. data/lib/fluent/command/debug.rb +4 -4
  9. data/lib/fluent/compat/handle_tag_and_time_mixin.rb +2 -0
  10. data/lib/fluent/compat/output.rb +5 -2
  11. data/lib/fluent/config/configure_proxy.rb +26 -5
  12. data/lib/fluent/config/error.rb +3 -0
  13. data/lib/fluent/config/section.rb +15 -0
  14. data/lib/fluent/event_router.rb +77 -4
  15. data/lib/fluent/plugin/base.rb +12 -3
  16. data/lib/fluent/plugin/filter.rb +48 -6
  17. data/lib/fluent/plugin/filter_record_transformer.rb +3 -1
  18. data/lib/fluent/plugin/filter_stdout.rb +0 -4
  19. data/lib/fluent/plugin/in_debug_agent.rb +5 -5
  20. data/lib/fluent/plugin/in_dummy.rb +9 -1
  21. data/lib/fluent/plugin/in_forward.rb +32 -14
  22. data/lib/fluent/plugin/in_monitor_agent.rb +31 -77
  23. data/lib/fluent/plugin/in_tail.rb +37 -9
  24. data/lib/fluent/plugin/out_forward.rb +2 -13
  25. data/lib/fluent/plugin/output.rb +16 -1
  26. data/lib/fluent/plugin/storage_local.rb +16 -0
  27. data/lib/fluent/plugin_helper/timer.rb +6 -1
  28. data/lib/fluent/root_agent.rb +3 -0
  29. data/lib/fluent/supervisor.rb +62 -9
  30. data/lib/fluent/test/base.rb +3 -0
  31. data/lib/fluent/test/driver/base.rb +5 -0
  32. data/lib/fluent/test/formatter_test.rb +2 -0
  33. data/lib/fluent/test/parser_test.rb +2 -0
  34. data/lib/fluent/version.rb +1 -1
  35. data/lib/fluent/winsvc.rb +1 -2
  36. data/test/compat/test_calls_super.rb +2 -0
  37. data/test/config/test_configurable.rb +88 -0
  38. data/test/config/test_types.rb +7 -3
  39. data/test/plugin/test_filter.rb +121 -23
  40. data/test/plugin/test_filter_record_transformer.rb +22 -6
  41. data/test/plugin/test_in_debug_agent.rb +2 -2
  42. data/test/plugin/test_in_forward.rb +54 -6
  43. data/test/plugin/test_in_monitor_agent.rb +329 -0
  44. data/test/plugin/test_in_tail.rb +73 -0
  45. data/test/plugin/test_out_forward.rb +1 -0
  46. data/test/plugin/test_output.rb +53 -0
  47. data/test/plugin/test_output_as_buffered.rb +13 -0
  48. data/test/plugin/test_output_as_buffered_overflow.rb +3 -0
  49. data/test/plugin/test_output_as_buffered_retries.rb +11 -0
  50. data/test/plugin/test_output_as_buffered_secondary.rb +12 -0
  51. data/test/plugin/test_output_as_standard.rb +12 -0
  52. data/test/plugin_helper/test_compat_parameters.rb +2 -0
  53. data/test/plugin_helper/test_timer.rb +31 -0
  54. data/test/test_event_router.rb +87 -0
  55. data/test/test_filter.rb +48 -6
  56. data/test/test_log.rb +5 -2
  57. data/test/test_output.rb +41 -1
  58. data/test/test_plugin_classes.rb +17 -9
  59. data/test/test_root_agent.rb +146 -0
  60. metadata +51 -67
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d61817ee4a10ec29bea13379d5e69179bf75a167
4
- data.tar.gz: e1c33b68770540e27bde4a7b191cfefa7f7158a1
3
+ metadata.gz: 529221a0c55683e4a49cc5916e9e81ee57d56a0f
4
+ data.tar.gz: 1e3f9752361cbd8be54bb3477464e6b80fbe5d71
5
5
  SHA512:
6
- metadata.gz: 1dbda6c9bb5087d44d9e62ec0be2e5941b0ba0eec07bd7dd9545187886a1d442f5c40a541d786e449d1ffba09529467417862206d011664c2b7153fcae0fdf91
7
- data.tar.gz: f15512f5dcc43e0f5efd7f3c420b92e59e9f3f326be7cfb8d663ba1f026b1472f240a602663027f398e53ab4b6f67a812a2aa336d67ecf3040ae9c809ce90537
6
+ metadata.gz: c4522d4acb9917dfc69ee2d3ac0c71f19ab48fd918b837a284cc4ad9376d8661e7ed304ce3fa3fa70b29e42764daf659a1522509bfb6062c89e50b919e4d7354
7
+ data.tar.gz: f8b8c42e975b412a0e42b65dbf3bf256756b7232407be7dc38345326f18154d0424c6e8e0e65ca4af8403f8bbc99f1ab0db349e34bc60c37f2975c5cb580d316
data/ChangeLog CHANGED
@@ -1,6 +1,63 @@
1
1
  # v0.14
2
2
 
3
- ## Release 0.14.1 - 2016/06/30
3
+ ## Release v0.14.4 - 2016/08/31
4
+
5
+ ### New features / Enhancement
6
+
7
+ * Add a method to Filter API to update time of events
8
+ https://github.com/fluent/fluentd/pull/1140
9
+ * Improve performance of filter pipeline
10
+ https://github.com/fluent/fluentd/pull/1145
11
+ * Fix to suppress not to warn about different plugins for primary and secondary without any problems
12
+ https://github.com/fluent/fluentd/pull/1153
13
+ * Add deprecated/obsoleted options to config_param to show removed/warned parameters
14
+ https://github.com/fluent/fluentd/pull/1186
15
+ * in_forward: Add a feature source_hostname_key to inject source hostname into records
16
+ https://github.com/fluent/fluentd/pull/807
17
+ * in_tail: Add a feature from_encoding to specify both encoding from and to
18
+ https://github.com/fluent/fluentd/pull/1067
19
+ * filter_record_transformer: Fix to prevent overwriting reserved placeholder keys
20
+ https://github.com/fluent/fluentd/pull/1176
21
+ * Migrate some build-in plugins into v0.14 API
22
+ https://github.com/fluent/fluentd/pull/1149
23
+ https://github.com/fluent/fluentd/pull/1151
24
+ * Update dependencies
25
+ https://github.com/fluent/fluentd/pull/1193
26
+
27
+ ### Bug fixes
28
+
29
+ * Fix to start/stop/restart Fluentd processes correctly on Windows environment
30
+ https://github.com/fluent/fluentd/pull/1171
31
+ https://github.com/fluent/fluentd/pull/1192
32
+ * Fix to handle Windows events correctly in winsvc.rb
33
+ https://github.com/fluent/fluentd/pull/1155
34
+ https://github.com/fluent/fluentd/pull/1170
35
+ * Fix not to continue to restart workers for configuration errors
36
+ https://github.com/fluent/fluentd/pull/1183
37
+ * Fix output threads to start enqueue/flush buffers until plugins' start method ends
38
+ https://github.com/fluent/fluentd/pull/1190
39
+ * Fix a bug not to set umask 0
40
+ https://github.com/fluent/fluentd/pull/1152
41
+ * Fix resource leak on one-shot timers
42
+ https://github.com/fluent/fluentd/pull/1178
43
+ * Fix to call plugin helper methods in configure
44
+ https://github.com/fluent/fluentd/pull/1184
45
+ * Fix a bug to count event size
46
+ https://github.com/fluent/fluentd/pull/1164/files
47
+ * Fix to require missed compat modules
48
+ https://github.com/fluent/fluentd/pull/1168
49
+ * Fix to start properly for plugins under MultiOutput
50
+ https://github.com/fluent/fluentd/pull/1167
51
+ * Fix test drivers to set class name into plugin instances
52
+ https://github.com/fluent/fluentd/pull/1069
53
+ * Fix tests not to use mocks for Time (improve test stabilization)
54
+ https://github.com/fluent/fluentd/pull/1194
55
+
56
+ ## Release 0.14.3 - 2016/08/30
57
+
58
+ * Fix the dependency for ServerEngine 1.x
59
+
60
+ ## Release 0.14.2 - 2016/08/09
4
61
 
5
62
  ### New features / Enhancement
6
63
 
@@ -216,1133 +273,4 @@ This list includes changes of 0.14.0.pre.1 and release candidates.
216
273
  https://github.com/fluent/fluentd/pull/955
217
274
  https://github.com/fluent/fluentd/pull/966
218
275
 
219
-
220
- # v0.12
221
-
222
- ## Release 0.12.24 - 2016/05/20
223
-
224
- ### New features / Enhancement
225
-
226
- * buffer: Add drop_oldest_chunk to buffer_queue_full_action parameter
227
- https://github.com/fluent/fluentd/pull/934
228
- * in_tail: Add "encoding" parameter
229
- https://github.com/fluent/fluentd/pull/889
230
- * in_tail: Add "path_key" patameter
231
- https://github.com/fluent/fluentd/pull/951
232
- * in_monitor_agent: Add emit_config parameter to emit plugin configuration together
233
- https://github.com/fluent/fluentd/pull/963
234
- * config: Support multiline string in " quoted string
235
- https://github.com/fluent/fluentd/pull/929
236
-
237
- ### Bug fixes
238
-
239
- * in_http: Add 'Access-Control-Allow-Origin' to response header
240
- https://github.com/fluent/fluentd/pull/882
241
- * parser: Fix logger on Fluent::StringUtil to use $log
242
- https://github.com/fluent/fluentd/pull/926
243
- * out_forward: Add missing error class definition
244
- https://github.com/fluent/fluentd/pull/953
245
-
246
- ## Release 0.12.23 - 2016/05/03
247
-
248
- ### Bug fixes
249
-
250
- * Fix string-scrub dependency on ruby > 2
251
- https://github.com/fluent/fluentd/pull/933
252
- * fluent-debug: Fix regression
253
- https://github.com/fluent/fluentd/pull/894
254
-
255
- ## Release 0.12.22 - 2016/03/10
256
-
257
- ### Bug fixes
258
-
259
- * supervisor: Require fcntl library for daemonize
260
- https://github.com/fluent/fluentd/pull/845
261
-
262
- ## Release 0.12.21 - 2016/03/03
263
-
264
- ### New features / Enhancement
265
-
266
- * output: Use error stream in TimeSlicedOutput#emit
267
- https://github.com/fluent/fluentd/pull/791
268
- * in_tail: Avoid unnecessary open call
269
- https://github.com/fluent/fluentd/pull/788
270
- * in_tail: Add enable_watch_timer option
271
- https://github.com/fluent/fluentd/pull/811
272
- * filter_record_transformer: Relax conditions which auto_typecast is applied when enable_ruby yes
273
- https://github.com/fluent/fluentd/pull/817
274
- * Backport v0.14 refactoring changes
275
-
276
- ### Bug fixes
277
-
278
- * in_tail: Fix input messages loss when receive_lines fail with BufferQueueLimitError
279
- https://github.com/fluent/fluentd/pull/810
280
- * in_monitor_agent: Remove unnecessary fields from API response with debug mode
281
- https://github.com/fluent/fluentd/pull/802
282
- * filter_record_transformer: Fix record_transformer to be thread-safe
283
- https://github.com/fluent/fluentd/pull/816
284
-
285
- ## Release 0.12.20 - 2016/01/26
286
-
287
- ### New features / Enhancement
288
-
289
- * in_forward: Add skip_invalid_event paramter to check and skip invalid event
290
- https://github.com/fluent/fluentd/pull/776
291
- * in_tail: Add multiline_flush_interval parameter for periodic flush with multiline format
292
- https://github.com/fluent/fluentd/pull/775
293
- * filter_record_transformer: Improve ruby placeholder performance and adding 'record["key"]' syntax
294
- https://github.com/fluent/fluentd/pull/766
295
- * Add on_exit_process hook point to DetachProcessMixin
296
- https://github.com/fluent/fluentd/pull/757
297
- * Add descriptions to BufferedOutput and TimeSlicedOutput
298
- https://github.com/fluent/fluentd/pull/759
299
- https://github.com/fluent/fluentd/pull/760
300
-
301
- ### Bug fixes
302
-
303
- * parser: Don't use BigDecimal in JSON parsing result with Oj
304
- https://github.com/fluent/fluentd/pull/778
305
- * config: Fix the regression of unused parameter warning inside sub section
306
- https://github.com/fluent/fluentd/pull/765
307
-
308
- ## Release 0.12.19 - 2015/12/21
309
-
310
- ### New features / Enhancement
311
-
312
- * input: Standardize logging level for source configs
313
- https://github.com/fluent/fluentd/pull/743
314
- * buffer: Add buffer_queue_full_action parameter
315
- https://github.com/fluent/fluentd/pull/745
316
- * parser/formatter: Use 'oj' when oj is installed in json parser/formatter
317
- https://github.com/fluent/fluentd/pull/748
318
-
319
- ### Bug fixes
320
-
321
- * fluent-cat: fix the regression of --msgpack option
322
- https://github.com/fluent/fluentd/pull/747
323
-
324
- ## Release 0.12.18 - 2015/12/09
325
-
326
- ### New features / Enhancement
327
-
328
- * in_exec: Stop in_exec immediately at shutdown
329
- https://github.com/fluent/fluentd/pull/526
330
- * in_exec: Support built-in text parsers
331
- https://github.com/fluent/fluentd/pull/704
332
- * out_forward: raises ZeroDivisionError when no <server> is available
333
- https://github.com/fluent/fluentd/pull/707
334
- * Add process_name parameter in system to change fluentd's process name
335
- https://github.com/fluent/fluentd/pull/708
336
- * test: Add ParserTestDriver
337
- https://github.com/fluent/fluentd/pull/702
338
- * test: Add FormatterTestDriver
339
- https://github.com/fluent/fluentd/pull/712
340
- * Add parameter description to built-in plugins
341
-
342
- ### Bug fixes
343
-
344
- * fix bug not to protect in-memory-buffer for multi thread emitting / run loop
345
- https://github.com/fluent/fluentd/pull/710
346
- * in_tail: expand_paths exclude unreadable files
347
- https://github.com/fluent/fluentd/pull/734
348
-
349
- ## Release 0.12.17 - 2015/11/04
350
-
351
- ### New features / Enhancement
352
-
353
- * Engine: Add Engine#msgpack_factory for v0.14 compatibility
354
- https://github.com/fluent/fluentd/pull/693
355
- * Log shutdown plugin info to check shutdown sequence
356
- https://github.com/fluent/fluentd/pull/689
357
- * in_monitor_agent: Emit plugin info to use existing plugins
358
- https://github.com/fluent/fluentd/pull/670
359
- * config: Improve describing plugin parameters
360
- https://github.com/fluent/fluentd/pull/683
361
-
362
- ### Bug fixes
363
-
364
- * Tempfile should be binary mode
365
- https://github.com/fluent/fluentd/pull/691
366
- * filter_record_transformer: Don't use popular name to prevent field overwrite when enable_ruby is true
367
- https://github.com/fluent/fluentd/pull/687
368
-
369
- ## Release 0.12.16 - 2015/09/30
370
-
371
- ### New features / Enhancement
372
-
373
- * parser: Add null_value_pattern and null_empty_string option for ltsv, csv and tsv.
374
- https://github.com/fluent/fluentd/pull/657
375
- * RPC: Implement /api/config.dump and /api/config.getDump APIs to dump in memory config
376
- https://github.com/fluent/fluentd/pull/666
377
- * Add --show-plugin-config option
378
- https://github.com/fluent/fluentd/pull/663
379
-
380
- ### Bug fixes
381
-
382
- * in_http: Fix add_remote_addr and add_http_headers options not working on bulk request
383
- https://github.com/fluent/fluentd/pull/673
384
- * parser: RegexpParser#initialize should wrap only Hash configuration
385
- https://github.com/fluent/fluentd/pull/647
386
-
387
- ## Release 0.12.15 - 2015/07/29
388
-
389
- ### New features / Enhancement
390
-
391
- * in_status: Warn deprecation message
392
- https://github.com/fluent/fluentd/pull/635
393
- * output: Modify TimeSlicedOutput#emit mechanizm to fit BufferedOutput#emit way
394
- https://github.com/fluent/fluentd/pull/634
395
-
396
- ## Release 0.12.14 - 2015/07/17
397
-
398
- ### New features / Enhancement
399
-
400
- * config: Log unused section configuration as warn level
401
- https://github.com/fluent/fluentd/pull/629
402
- * config: Add '@' to log_level. Keep log_level for backward compatibility
403
- https://github.com/fluent/fluentd/pull/630
404
- * parser: Add time_key option for RegexpParser
405
- https://github.com/fluent/fluentd/pull/588
406
-
407
- ### Bug fixes
408
-
409
- * out_forward: Add 'dns_round_robin' option
410
- https://github.com/fluent/fluentd/pull/632
411
-
412
- ## Release 0.12.13 - 2015/07/09
413
-
414
- ### New features / Enhancement
415
-
416
- * out_stdout: Support formatter plugins in out_stdout
417
- https://github.com/fluent/fluentd/pull/617
418
- * filter_record_transformer: Add "auto_typecast" parameter
419
- https://github.com/fluent/fluentd/pull/620
420
- * out_forward: Support DNS round robin
421
- https://github.com/fluent/fluentd/pull/625
422
- * out_forward: Support heartbeat_type none to disable heartbeat
423
- https://github.com/fluent/fluentd/pull/626
424
-
425
- ### Bug fixes
426
-
427
- * config: Fix secret option to support config_section
428
- https://github.com/fluent/fluentd/pull/628
429
-
430
- ## Release 0.12.12 - 2015/06/12
431
-
432
- ### New features / Enhancement
433
-
434
- * in_forward: Add chunk format check
435
- https://github.com/fluent/fluentd/pull/611
436
-
437
- ### Bug fixes
438
-
439
- * formatter: Fix SingleValueFormatter to prevent record from modified
440
- https://github.com/fluent/fluentd/pull/615
441
- * config: configure requires Config::Element, not Hash
442
- https://github.com/fluent/fluentd/pull/616
443
-
444
- ## Release 0.12.11 - 2015/06/01
445
-
446
- ### New features / Enhancement
447
-
448
- * fluent-cat: Add none format
449
- https://github.com/fluent/fluentd/pull/606
450
- * config: Add secret option
451
- https://github.com/fluent/fluentd/pull/604
452
-
453
- ## Release 0.12.10 - 2015/05/28
454
-
455
- ### New features / Enhancement
456
-
457
- * filter_record_transformer: add renew_time_key option to replace event time with processed field
458
- https://github.com/fluent/fluentd/pull/602
459
- * config: add config_param `enum` type
460
- https://github.com/fluent/fluentd/pull/600
461
-
462
- ## Release 0.12.9 - 2015/05/19
463
-
464
- ### New features / Enhancement
465
-
466
- * in_tail: Add read_lines_limit parameter to control chunk size
467
- https://github.com/fluent/fluentd/pull/593
468
- * filter: add filter_stdout plugin
469
- https://github.com/fluent/fluentd/pull/586
470
- * parser: add keep_time_key option
471
- https://github.com/fluent/fluentd/pull/587
472
- * parser: keys parameter accepts json array configuration
473
- https://github.com/fluent/fluentd/pull/592
474
- * Implement RPC server for better instance management
475
- https://github.com/fluent/fluentd/pull/585
476
-
477
- ### Bug fixes
478
-
479
- * out_file: Fix out_file can create directory recursively
480
- https://github.com/fluent/fluentd/pull/595
481
-
482
- ## Release 0.12.8 - 2015/04/22
483
-
484
- ### New features / Enhancement
485
-
486
- * output: Support millisecond for try_flush_interval and queued_chunk_flush_interval
487
- https://github.com/fluent/fluentd/pull/568
488
- * filter_record_transformer: Support fields which start with @
489
- https://github.com/fluent/fluentd/pull/574
490
- * config: Add final attribute to prevent config overwritten by subclass
491
- https://github.com/fluent/fluentd/pull/583
492
-
493
- ### Bug fixes
494
-
495
- * config: fix embedded code parsing
496
- https://github.com/fluent/fluentd/pull/564
497
- * out_forward: Resend chunks on dropped connection when wait ACK
498
- https://github.com/fluent/fluentd/pull/580
499
-
500
- ## Release 0.12.7 - 2015/03/22
501
-
502
- ### New features / Enhancement
503
-
504
- * in_tail: Add exclude_path option to support exclusion of files
505
- https://github.com/fluent/fluentd/pull/561
506
- * filter_record_transformer: Support placeholders in record keys
507
- https://github.com/fluent/fluentd/pull/558
508
-
509
-
510
- ## Release 0.12.6 - 2015/03/03
511
-
512
- ### Bug fixes
513
-
514
- * out_forward: Should handle ECONNREFUSED exeception on TCP heartbeat
515
- * test: BufferedOutputTestDriver must use correct buffer chunk type
516
-
517
- ## Release 0.12.5 - 2015/02/09
518
-
519
- ### New features / Enhancement
520
-
521
- * in_tail: Enable multiline mode if format contains 'multiline'
522
- https://github.com/fluent/fluentd/pull/545
523
- * event: Improve EventStream#to_msgpack_stream performance
524
- https://github.com/fluent/fluentd/pull/549
525
- * engine: Add tag information emit log
526
-
527
- ### Bug fixes
528
-
529
- * Update msgpack dependency to avoid incompatible encoding problem
530
- https://github.com/fluent/fluentd/pull/550
531
-
532
- ## Release 0.12.4 - 2015/01/23
533
-
534
- ### New features / Enhancement
535
-
536
- * Support 64bit inode environment in in_tail
537
- https://github.com/fluent/fluentd/pull/542
538
-
539
- ### Bug fixes
540
-
541
- * Fix ThreadError occuring on Signal.trap SIGHUP
542
- https://github.com/fluent/fluentd/pull/541
543
-
544
- ## Release 0.12.3 - 2015/01/16
545
-
546
- ### New features / Enhancement
547
-
548
- * parser: nginx and apache2 format can now parse access log without http-version
549
- https://github.com/fluent/fluentd/pull/535
550
- * filter_record_transformer: Allow non-string values like array / hash
551
- https://github.com/fluent/fluentd/pull/530
552
- * plugin: Add writable check for path related parameter
553
- https://github.com/fluent/fluentd/pull/401
554
- * command: -g and -G now works in embedded Ruby environment like Treasure Agent
555
- https://github.com/fluent/fluentd/pull/423
556
-
557
- ### Bug fixes
558
-
559
- * buffer: Fix to flush a buffer by USR1 signal even on retrying
560
- https://github.com/fluent/fluentd/pull/531
561
- * buffer: Fix TimeSlicedOutput doesn't flush with SIGUSR1
562
- https://github.com/fluent/fluentd/pull/533
563
- * buffer: Fix broken calc_retry_wait if Integer is used for retry_wait parameter
564
- https://github.com/fluent/fluentd/pull/529
565
- * engine: Fix SIGHUP does not reload config
566
- https://github.com/fluent/fluentd/pull/537
567
-
568
- ## Release 0.12.2 - 2014/12/20
569
-
570
- ### New Features / Enhancement
571
-
572
- * filter: Change filter behaviour. If filter method returns nil, its record is removed from stream.
573
- https://github.com/fluent/fluentd/pull/515
574
- * in_monitor_agent: Render filter plugins
575
- https://github.com/fluent/fluentd/pull/514
576
- * test: FilterTestDriver has run, emit and getting result methods
577
- https://github.com/fluent/fluentd/pull/519
578
-
579
- ### Bug fixes
580
-
581
- * test: Support @label by TestDriver
582
- https://github.com/fluent/fluentd/pull/517
583
-
584
- ## Release 0.12.1 - 2014/12/14
585
-
586
- ### Bug fixes
587
-
588
- * plugin: Fix router is nil inside out_copy, out_roundrobin, and BufferedOutput secondary
589
- https://github.com/fluent/fluentd/pull/508
590
-
591
- ## Release 0.12.0 - 2014/12/12
592
-
593
- ### New Features / Enhancement
594
-
595
- * config: Introduce @type and @id parameter for system parameter. type and id are still valid.
596
- * Filter: old tag trick of "using output plugins as filter" is no longer needed
597
- v0.12.0 ships with grep and record_transformer filter plugins
598
- * Label: grouping Filter and Output plugins to reduce the complexity of event routing
599
- @ERROR built-in label is also added to handle errors in emit
600
- Add emit_error_event API to send invalid record to @ERROR
601
- * in_forward/out_forward: Add require_ack_response and ack_response_timeout for At-least-once semantics
602
-
603
- Here is the announcement for above new features: http://www.fluentd.org/blog/fluentd-v0.12-is-released
604
-
605
- * parser/formatter: Add base class and Plugin.new_xxx/Plugin.register_xxx APIs
606
- https://github.com/fluent/fluentd/pull/495
607
- https://github.com/fluent/fluentd/pull/497
608
- * formatter: Add new CSV formatter
609
- https://github.com/fluent/fluentd/pull/489
610
- * formatter: Add msgpack format to built-in Formatter to dump records
611
- https://github.com/fluent/fluentd/pull/479
612
- * input: Add in_dummy plugin
613
- https://github.com/fluent/fluentd/pull/484
614
- * in_http: Add respond_with_empty_img parameter to return empty gif image
615
- https://github.com/fluent/fluentd/pull/480
616
- * in_http: Add cors_allow_origins parameter to support CORS request
617
- https://github.com/fluent/fluentd/pull/473
618
- * output: Add relable output plugin
619
- https://github.com/fluent/fluentd/pull/417
620
- * config: Add self.name to configure_proxy error message
621
- https://github.com/fluent/fluentd/pull/490
622
- * log: --suppress-repeated-stacktrace is true by default
623
- https://github.com/fluent/fluentd/pull/446
624
- * Update msgpack to v0.5 and cool.io to v1.2
625
-
626
- ### Bug fixes
627
-
628
- * config: Fix system config using double memory
629
- https://github.com/fluent/fluentd/pull/496
630
- * config: Fix v1 config to support multiple tag match
631
- https://github.com/fluent/fluentd/pull/478
632
- * config: Fix Config.bool_value regression for nil value
633
- https://github.com/fluent/fluentd/pull/477
634
- * parser: Fix blank column handling of TSVParser
635
- https://github.com/fluent/fluentd/pull/506
636
- * buffer: Prevent an exception with large num_retries
637
- https://github.com/fluent/fluentd/pull/502
638
- * out_file: Don't create world writable directory in daemon mode
639
- https://github.com/fluent/fluentd/pull/483
640
-
641
- # v0.10
642
-
643
- Release 0.10.57 - 2014/11/13
644
-
645
- * buffer: Make `total_queued_chunk_size` thread-safe to avoid race condition with `in_monitor_agent`
646
- https://github.com/fluent/fluentd/pull/469
647
- * Add `--no-supervisor` option to disable the supervisor for supervision tools like runit
648
- https://github.com/fluent/fluentd/pull/449
649
-
650
- 0.10.57 was a bug fix release.
651
-
652
- Release 0.10.56 - 2014/10/31
653
-
654
- * config: Add Fluent::Config::Section#object_id to avoid NoMethodError by object dump tools
655
- https://github.com/fluent/fluentd/pull/460
656
- * mixin: Fix SetTagKeyMixin and SetTimeKeyMixin which ignores config_set_default since 0.10.53
657
- https://github.com/fluent/fluentd/pull/462
658
- * input/output: Support 'timezone' configuration parameter (e.g. "+09:00" for JST)
659
- https://github.com/fluent/fluentd/pull/430
660
- * log: Use plugin_id instead of object_id in log message for consistency with in_monitor_agent
661
- https://github.com/fluent/fluentd/pull/459
662
-
663
- Release 0.10.55 - 2014/10/16
664
-
665
- * config: Change v1's non-quoted string literal behaviour to v0's behaviour
666
- https://github.com/fluent/fluentd/pull/436
667
- * config: Relax '@' handling in the plugin configuration for backward compatibility
668
- https://github.com/fluent/fluentd/pull/455
669
- * config: Add --use-v0-config for keeping old configuration
670
- https://github.com/fluent/fluentd/pull/434
671
- * config: Add single quoted literal in v1 configuration
672
- https://github.com/fluent/fluentd/pull/437
673
- * config: Improve error message of Array / Hash parse error
674
- https://github.com/fluent/fluentd/pull/457
675
- * input: Reduce shutdown time in some network related plugins when use Cool.io 1.2
676
- https://github.com/fluent/fluentd/pull/440
677
- * parser: Use ParserError instead of general exception classes
678
- https://github.com/fluent/fluentd/pull/453
679
- * Remove unused zfile buffer plugin
680
- https://github.com/fluent/fluentd/pull/445
681
-
682
- Release 0.10.54 - skipped
683
-
684
- Release 0.10.53 - 2014/08/21
685
-
686
- * in_tail: Fix forget to detach Closer timer object
687
- * in_debug_agent: Fix config_param type of unix_path
688
- * in_syslog: Add include_source_host and source_host_Key options
689
- * config: Dump V1 escaped parameter correctly at start phase
690
- * config: Fix bug for config_param of bool value without defaults
691
- * config: Add 'alias' option to config_section and config_param
692
- * buffer: Add 'disable_retry_limit' option
693
- * engine: Reduce memory usage when retry_limit is large
694
- * parser: Add apache_error format
695
- * supervisor: Dump Fluentd version at dry run mode
696
- * test: InputTestDriver wait 'run' until input plugin emits all test data
697
-
698
- Release 0.10.52 - 2014/07/15
699
-
700
- * in_tail: Fix typo of warning argument. lb to line
701
- * config: Fix 'uninitialized constant Fluent::Config::V1Parser::URI' error
702
- * config: Reject '@' prefix of parameter name in V1 configuration. @ is reserved prefix.
703
- * config; Accept '#' comment in array and hash types
704
- * parser: Add time_format option to SyslogParser
705
- * parser: SyslogParser now makes ':' optional after pid
706
- * process: Fix 'mutex can't lock' issue of DetachMultiProcessMixin on Ruby 2.x
707
- * Add --without-source option to ignore <source> sections
708
-
709
- Release 0.10.51 - 2014/07/04
710
-
711
- * in_tail: Fix rotation handling when new file not found
712
- * in_syslog: Change debug log level to warn at pattern mismatch
713
- * formatter: Use localtime by default
714
- * parser: Add SyslogParser
715
- * parser: Add "estimate_current_event" attribute to TextParsers not to set current time into parse result
716
- * config: Add <system> section to set core parameters via configuration file
717
- * test: Support v1 configuration in TestDriver
718
- * Add udp and tcp input plugins
719
-
720
- Release 0.10.50 - 2014/06/17
721
-
722
- * in_tail: Fix race condition at shutdown
723
- * in_tail: read_from_head now works without pos_file
724
- * in_tail: Fix multiline format parsing without format_firstline
725
- * formatter: Add add_newline option to SingleValueFormatter
726
- * parser: Add block based API to support multi-events parsing
727
- * config: Fix encoding mismatch when @include used in v1
728
- * engine: Serialize shutdown order. Now shutdown input plugins first
729
- * Update rspec to 3.x
730
-
731
- Release 0.10.49 - 2014/06/05
732
-
733
- * in_http: Add format option to support various input data format
734
- * in_http: Accept json / msgpack array in default format
735
- * in_tail: Print warning message when file not exist with 'read_from_head true'
736
- * out_file: Add append option to disable path increment
737
- * out_file: Add format option to support various output data format
738
- * config: Fix broken 'include' processing in V1 configuration. Now add @include
739
- * fluentd-debug: Fix undefined method 'usage' error when invalid option passed
740
- * supervisor: Fix incorrect --group option handling
741
- * Add TextFormatter module for output plugins
742
-
743
- Release 0.10.48 - 2014/05/18
744
-
745
- * config: Add inspect method to Section for dumping the status
746
- * test: Fix the regression which forget to initialize $log in fluent/test.rb
747
- * Engine: Remove undocumented legacy plugin load mechanizm
748
-
749
- Release 0.10.47 - 2014/05/15
750
-
751
- * in_tail: Fix typo in flush_buffer
752
- * in_forward: Add chunk_size_warn_limit and chunk_size_limit for large chunks
753
- * in_monitor_agent: Add /api/config APIs to expose Fluentd configurations
754
- * supervisor: Add Supervisor.default_options to return default Fluentd options
755
- * test: Add DummyLogDevise and improve log handling in tests
756
- * config: Allow empty string value like `tag_mapped` in v1 configuration
757
-
758
- Release 0.10.46 - 2014/04/21
759
-
760
- * in_tail: Fix typo in rescue for dumping backtrace
761
- * in_forward: Add blocking_timeout option to avoid Cool.io loop stuck in shutdown
762
- * out_forward: Add phi_failure_detector option to disable "The Phi accrual failure detector"
763
- * buf_memory: Add flush_at_shutdown option to discard buffered event at shutdown
764
- * parser: Use Engine.now when time_key is missing in ValuesParser
765
- * parser: TextParser loads fluent/plugin/parser_xxx.rb automatically when 'xxx' format not found
766
- * Fix match cache expiration
767
- * Add new v1 configuration format and --use-v1-config option to enable v1 configuration format
768
- * Add config_section to Configurable to support nested parameters in plugins
769
- * Relax http_parser.rb gem version to support 0.6 series
770
-
771
- Release 0.10.45 - 2014/03/28
772
-
773
- * in_tail: Merge in_tail_ex and in_tail_multiline features
774
- * in_forward: Add linger_timeout option
775
- * out_exec: Support json and msgpack format
776
- * Engine: Fix signal handling when receives SIGTERM before loop starts
777
- * Use correct out_forward option in fluent.conf with --setup option
778
- * Ignore sigdump exception on signal unsupported environment
779
-
780
- Release 0.10.44 - 2014/02/26
781
-
782
- * in_forward: Print remote address and port in trace log
783
- * Remove several methods from fluentd-debug to call remote object method directly
784
- * Add --gemfile option to manage Fluentd and plugins using Gemfile and Bundler
785
- * Add <include path /> directive to include the configuration file under the elements
786
- * Add 'ruby' keyword to call Kernel method in configuration DSL
787
- * Relax Cool.io gem version to allow 1.2.x
788
-
789
- Release 0.10.43 - 2014/02/03
790
-
791
- * Input/Output: Add 'log_level' option to plugins
792
- * parser/in_tail: Fix RegexpParser forget to call configure method
793
- * parser/in_tail: Improve type conversion performance
794
- * in_http: Add add_http_headers option to add HTTP headers to record
795
- * Buffer: Improve submit_buffer throughput using round-robin writer selection
796
- * add sigdump gem to dump useful information via SIGCONT
797
-
798
- Release 0.10.42 - 2013/12/25
799
-
800
- * parser/in_tail: Add 'types' and related parameters to convert record value type
801
- * in_syslog: Add 'protocol_type' option for TCP support.
802
- * Buffer: Extract 'storable?' method for hook judge mechanizm by 3rd-party buffer plugins.
803
- * Output: Add 'try_flush_interval' parameter for high frequency flush.
804
- It is undocumented because almost users never need this feature.
805
- * Change configuration unused checking to prevent memory leak when a plugin accesses configuratino keys.
806
-
807
- Release 0.10.41 - 2013/12/05
808
-
809
- * BufferedOutput: Add 'max_retry_wait' to limit retry interval
810
- * in_exec/object_space/syslog: Improve emit error message
811
- * Log: Add --suppress-repeated-stacktrace option to prevent log size explosion
812
-
813
- Release 0.10.40 - 2013/11/08
814
-
815
- * Dump gem version of fluent-plugin-xxx and fluent-mixin-xxx
816
- * in_http: Doesn't set REMOTE_ADDR when IO#getpeername failed
817
- * in_tail/parser: Fix RegexpParser which ignores time_format parameter
818
- * in_exec: Catch error and dumps error message in run_periodic
819
- * in_forward: Show error class in the error message
820
- * in_exec/out_exec_filter: Catch more exceptions, not only Errno::ESRCH, at shutdown
821
- * Log: Catch exception for log event handling at shutdown
822
-
823
- Release 0.10.39 - 2013/09/18
824
-
825
- * out_file: Improve symlink handling with buf_file
826
- * out_copy: Add deep_copy parameter for actual record copy
827
- * in_tail/parser: Add none format for supporting non-parse tailing like fluent-agent-lite
828
- * in_tail/parser: Improve performance using parsed time caching
829
- * Engine: Fix signal related exception in trap context at Ruby 2.0
830
- * buffer: Fix race condition when remove flushed chunk
831
- * add --suppress-config-dump option to disable dump configuration at start
832
-
833
- Release 0.10.38 - 2013/08/29
834
-
835
- * Fix require related problem in running test
836
-
837
- Release 0.10.37 - 2013/08/29
838
-
839
- * in_exec: Add format option to support tsv, json and msgpack. Default is tsv
840
- * out_stdout: Add output_type to print non-jsonable object
841
- * Engine: Skip nil record in emit
842
- * Check buffere_path duplication across buffer configurations.
843
- * Add experimental DSL to configuration format
844
-
845
- Release 0.10.36 - 2013/07/31
846
-
847
- * Log: add class name on each error logs
848
- * out_foward: change log level of node detachment/recovering/standby-failover from info to warn
849
- * out_file: add symlink_path parameter to point to latest written file
850
- * in_forward, in_http, in_unix: add backlog parameter to change resource backlog size
851
- * add --dry-run option to check fluentd setup without actual run
852
- * Fluentd now assumes configuration file written in UTF-8
853
- * update cool.io version to 1.1.1
854
-
855
- Release 0.10.35 - 2013/06/12
856
-
857
- * Log: emits fluentd's log via background thread
858
- * Log: use #inspect for non to_msgpack-able object in log event processing
859
- * FailureDetector/out_forward: fixed wrong phi calculation
860
- * in_stream: fixed unix domain connection leak when parsing json or msgpack failed
861
- * buf_file/out_file: sets 0644 permission to each created file for preventing
862
- File.umask(0) effect at daemonize mode
863
-
864
- Release 0.10.34 - 2013/06/03
865
-
866
- * fluentd: supports --emit-error-log-interval to suppress log messages with the
867
- same message for a certain seconds
868
- * BufferedOutput: fixed warning messages so that errors with the same meaning
869
- use the same message
870
- * Log: ignores ThreadError which could happen in signal handler
871
- * Engine: prevents signal handlers from calling stop() method of plugins twice
872
- * MessagePackEventStream/in_forward: doesn't cache MessagePack::Unpacker (if
873
- it uses msgpack-0.5.5 which doesn't cause performance impact) to not cause
874
- problems with out_copy
875
- * TextParser/in_tail,in_syslog: 'json' format type removes time key from records
876
- * TextParser/in_tail,in_syslog: raises exception if time_format is set while
877
- time_key is not set
878
- * in_tail: fixed minor bugs
879
-
880
-
881
- Release 0.10.33 - 2013/03/28
882
-
883
- * added in_monitor_agent
884
- * switched from jeweler to bundler
885
- * updated dependency for msgpack from '~> 0.4.4' to '~> 0.4.4 OR ~> 0.5.4'
886
- * added PluginId module so that in_monitor_agent can search plugins by id
887
- * BufferedOutput: added queued_chunk_flush_interval option to insert delay
888
- time before flushing queued chunks
889
- * BufferedOutput: randomize retry interval to prevent multiple servers from
890
- bursting network traffic at the same time
891
- * Configurable: sets @config instance variable
892
-
893
-
894
- Release 0.10.32 - 2013/03/04
895
-
896
- * in_tail: fixed the nil error problem which occurs with pos_file option
897
- * TextParser/in_tail: supports 'ltsv' (Labeled Tab-Separated Values) format: http://ltsv.org
898
- * #105: TextParser/in_tail: fixed 'nginx' format
899
- * #102: show log level in log messages
900
- * Gemfile: uses https source of rubygems instead of http
901
-
902
-
903
- Release 0.10.31 - 2013/01/31
904
-
905
- * out_forward: supports TCP heartbeat
906
- * in_tail reads rotated files from its head rather than its end when pos_file option is set
907
- * out_/in_ forward set O_NONBLOCK flag to the UDP heartbeat socket
908
- * Improved match cache expiration algorithm
909
-
910
-
911
- Release 0.10.30 - 2012/12/06
912
-
913
- * Shows configuration file at start time
914
- * Changed ruby version dependency from ~> 1.9.2 to => 1.9.2 so that it works
915
- with ruby-2.0.
916
- * TimeSlicedOutput: overwrites default value of buffer_chunk_limit to 256m.
917
- fluent-plugin-s3 will be affected.
918
- * TextParser/in_tail: supports 'nginx' preset formats
919
- * in/out_forward and in_syslog: support IPv6
920
- * out_forward: fixed a out of bounds bug
921
-
922
-
923
- Release 0.10.29 - 2012/11/26
924
-
925
- * buf_file: added flush_at_shutdown option to force flush before shuttingdown
926
- * TextParser shows message in warn level if text doesn't match the pattern
927
-
928
-
929
- Release 0.10.28 - 2012/10/30
930
-
931
- * in_http: on_request method can get headers as HTTP_* key and remote address
932
- as REMOTE_ADDR key of the params argument
933
-
934
-
935
- Release 0.10.27 - 2012/10/11
936
-
937
- * added BufferChunk#unique_id which is an unique identifier of a buffered chunk
938
- * BufferedOutput: show 'temporarily failed' message
939
-
940
-
941
- Release 0.10.26 - 2012/09/26
942
-
943
- * added in_debug_agent plugin and fluent-debug command which enable you to
944
- gather internal information of running Fluentd process using interactive shell
945
- * supervisor: --user commandline argument also inherits secondary groups (id -G)
946
- * out_forward: supports 'expire_dns_cache' option to set DNS expire time or disable
947
- caching. Default behavior is 'never expire' which is same as former versions
948
- * out_forward: assumes successful data transfer via TCP as a successful
949
- heartbeat.
950
- * out_forward: lazier failure detection: default phi_threshold 8 -> 10
951
- * in_forward: uses other nodes aggressively if it couldn't send data to the first
952
- candidate to not stall during the wait time before detecting failure
953
- * in_forward: fixed shutdown procedure
954
- * in_tail: seeks to the saved position if detected log rotation actually
955
- didn't rotate the file (meaning inode doesn't change). this change enables
956
- cronolog to work with Fluentd.
957
- * in_tail: fixed a problem that it couldn't recover from uncaught exceptions
958
- caused by output plugins
959
- * fluentd command supports '-q' option to decrease log level
960
-
961
-
962
- Release 0.10.25 - 2012/07/23
963
-
964
- * shutdown won't block
965
- * out_exec_filter supports 'child_respawn' option
966
- * in_tail doesn't remove whitespaces
967
- * out_roundrobin supports 'weight' option
968
-
969
-
970
- Release 0.10.24 - 2012/06/28
971
-
972
- * TextParser/in_tail: supports 'tsv' and 'csv' preset formats
973
- * supervisor set FD_CLOEXEC to @wait_daemonize_pipe_w in case the child
974
- process forked during run_configure
975
-
976
-
977
- Release 0.10.23 - 2012/06/25
978
-
979
- * out_exec_filter: show more error messages when child process unexpectedly exited
980
- * in_tail: Added 'apache2' format template which converts fields into integers or nil
981
- * TextParser creates a parser instance for each output for proper configuration
982
- * BufferedOutput: reset @flush_now flag
983
- * changed default buffer limit parameters:
984
- Fluentd core:
985
- buffer_chunk_limit 256MB -> 8MB
986
- buffer_queue_limit 128 -> 256
987
- buf_memory:
988
- buffer_chunk_limit 32MB -> 8MB
989
- buffer_queue_limit 32 -> 64
990
- out_file:
991
- buffer_chunk_limit -> 256MB
992
-
993
-
994
- Release 0.10.22 - 2012/05/02
995
-
996
- * Fixed in_tail and TextParser not to raise "time_format is required" error
997
- * out_exec_filter: fixed JSONFormatter to add \n at the end of records
998
- * out_exec_filter: separated {tag_key,time_key,time_format} parameters to
999
- {in_,out_}{tag_key,time_key,time_format parameters while keeping
1000
- compatibility
1001
-
1002
-
1003
- Release 0.10.21 - 2012/05/01
1004
-
1005
- * in_tail and TextParser support 'format json'
1006
- * in_tail and TextParser support 'time_key' and 'time_format' parameters for 'format json'
1007
- * in_tail: improved the file reader not to consume too much memory if the file is huge
1008
- * out_stdout: uses logger instead of STDOUT to show records even if Fluentd is daemonized
1009
- * Fixed the type of 'retry_wait' parameter of buffered output plugins from 'float' to 'time'
1010
- * Fixed owner of log files for log rotation to work properly with --user and --group options
1011
-
1012
-
1013
- Release 0.10.20 - 2012/04/27
1014
-
1015
- * Fixed Config#to_s
1016
- * out_exec_filter: supports 'out_format json' option
1017
- * out_exec_filter: supports 'in_format json' option
1018
-
1019
-
1020
- Release 0.10.19 - 2012/04/17
1021
-
1022
- * Fixed in_syslog
1023
- * in_tail: fixed "invalid byte sequence in US-ASCII" error
1024
- * in_unix is not obsoleted
1025
-
1026
-
1027
- Release 0.10.18 - 2012/04/13
1028
-
1029
- * Use Yajl instead of standard json library to avoid encoding problem
1030
- * buf_memory: call force_encoding('ASCII-8BIT') to avoid encoding problem
1031
-
1032
-
1033
- Release 0.10.17 - 2012/04/02
1034
-
1035
- * in_tail: don't ignore last line without LF [#44]
1036
- * Added HandleTagNameMixin
1037
- * Removed automake/conf style build support
1038
- Maintainig automake/conf style files are complex, but no user. We've decided
1039
- not to have those files anymore. Otherwise it's still used at rpm/deb packaging
1040
- scripts.
1041
-
1042
-
1043
- Release 0.10.16 - 2012/03/26
1044
-
1045
- * Added in_gc plugin
1046
- * Added in_object_space plugin
1047
- * Changed dependency yajl-ruby from '~> 1.0.0' to '~> 1.0'
1048
-
1049
-
1050
- Release 0.10.15 - 2012/03/09
1051
-
1052
- * Added experimental in_status plugin
1053
- * out_forward: normalize the phi value of the failure detector into 1sec
1054
- * out_forward: improved memory efficiency
1055
- * out_forward: use weighted moving average for the phi accrual failure detector
1056
-
1057
-
1058
- Release 0.10.14 - 2012/03/05
1059
-
1060
- * Show warnings if in_tcp or out_unix is used
1061
- * BasicBuffer shows warnings when data.bytesize > @buffer_chunk_limit
1062
- * out_forward: randomize roundrobin queue correctly
1063
- * Added development dependencies to the gemspec
1064
-
1065
-
1066
- Release 0.10.13 - 2012/02/21
1067
-
1068
- * Rewrote in_tail
1069
- * Fixed SIGUSR1 handler to force flush logs
1070
-
1071
-
1072
- Release 0.10.12 - 2012/02/13
1073
-
1074
- * Engine shows warnings when emitted record doesn't match any outputs
1075
- * in_tail is rewritten to follow symbolic links correctly
1076
- * out_forward uses independent default value as 'hard_timeout' parameter
1077
-
1078
-
1079
- Release 0.10.11 - 2012/02/10
1080
-
1081
- * out_forward supports 'standby' parameter
1082
- * out_forward handles 'hard_timeout' correctly
1083
-
1084
-
1085
- Release 0.10.10 - 2012/02/09
1086
-
1087
- * in_forward and out_forward don't raise exceptions in callback handlers of
1088
- cool.io not to stop Loop#run
1089
- * TimeSlicedOutput ignores time_slice_wait if flush_interval is specified
1090
- * in_tail follows symbolic links correctly
1091
- * in_http supports "Content-Type: application/json"
1092
- * TestDriver#run sleeps 0.5 seconds for the out_exec_filter plugin
1093
-
1094
-
1095
- Release 0.10.9 - 2012/01/19
1096
-
1097
- * Fixed TimeSlicedOutputTestDriver
1098
- * Updated cool.io 1.0.0 -> 1.1.0
1099
- * TextParser: fixed regexp of syslog parser to work with rsyslog on CentOS
1100
- * out_exec_filter: improve performance by using buffering
1101
- * out_exec_filter: added num_children parameter
1102
- * out_exec_filter: added remove_prefix/add_prefix parameters
1103
- * out_tail: show warning if pos_file parameter is not set
1104
- * out_copy: fixed problems when event stream is not repeatable
1105
-
1106
-
1107
- Release 0.10.8 - 2011/12/03
1108
-
1109
- * Added Supervisor: restart process on SIGHUP or unexpected end of process
1110
- * Added -i commandline option which allows inline config
1111
- * Added TimeSlicedOutputTestDriver
1112
- * BufferedOutput outputs 'retry succeeded' message
1113
- * Use Gem::Specification instead of Gem.searcher which is obsoleted
1114
- * Added BasicBuffer#chunk_limit -> buffer_chunk_limit alias for backward
1115
- compatibility
1116
- * buf_file: fixed to work with keys which contains '/'
1117
-
1118
-
1119
- Release 0.10.7 - 2011/11/16
1120
-
1121
- * Supports multi-threaded on buffered output plugins ('num_threads')
1122
- * Supports multi-process on input plugins ('detach_process')
1123
- * Added ObjectBufferedOutput
1124
- * Ensure to call 'shutdown' method of started plugins
1125
- * in_tail supports 'pos_file' option that stores read position to a file
1126
-
1127
-
1128
- Release 0.10.6 - 2011/11/11
1129
-
1130
- * Fixed --group NAME cmdline argument
1131
- * Run configure(conf) after changing user and group
1132
- * Fixed SIGHUP handling
1133
- * BasicBuffer plugin uses Configurable module
1134
- * buf_file uses microseconds + 12 bits random number for unique file name
1135
-
1136
-
1137
- Release 0.10.5 - 2011/11/08
1138
-
1139
- * Added out_forward, in_forward
1140
- * Added out_exec, in_exec
1141
- * Added out_exec_filter
1142
-
1143
-
1144
- Release 0.10.4 - 2011/11/07
1145
-
1146
- * TestDriver uses klass.dup.module_eval instead of inheriting class to
1147
- override methods
1148
- * fixed encoding problem of String#[] in FileBufferChunk#<<(data)
1149
-
1150
-
1151
- Release 0.10.3 - 2011/10/21
1152
-
1153
- * Supports 'include' in config file
1154
- * Supports "http://" schema
1155
- * Supports wildcards
1156
-
1157
-
1158
- Release 0.10.2 - 2011/10/18
1159
-
1160
- * Fixed EventStream#to_msgpack_stream (thanks CkReal)
1161
- * Added gemspec.required_ruby_version = '~> 1.9.2' (thanks sakuro)
1162
-
1163
-
1164
- Release 0.10.1 - 2011/10/16
1165
-
1166
- * SetTimeKeyMixin accepts include_time_key parameter
1167
- * SetTagKeyMixin accepts include_tag_key parameter
1168
- * Fixed Makefile.am
1169
- * Fixed MemoryBufferChunk#msgpack_each
1170
-
1171
-
1172
- Release 0.10.0 - 2011/10/16
1173
-
1174
- * Removed Event class
1175
- * def format(tag, event) -> format(time, tag, record)
1176
- * def emit(tag, event) -> emit(tag, time, record)
1177
- * Added plugin APIs
1178
- * Added Configurable
1179
- * Added TimeFormatter
1180
- * Added SetTimeKeyMixin
1181
- * Added SetTagKeyMixin
1182
- * Added InputTestDriver
1183
- * Added Gemfile, gemspec and .rvmrc files
1184
-
1185
-
1186
- Release 0.9.20 - 2011/10/07
1187
-
1188
- * Config#has_key? sets used flag not to show warning
1189
- * in_tcp supports JSON
1190
- * Depends on Yajl
1191
- * Fixed fluentd -r option
1192
- * Fixed autogen.sh to create plugins directory
1193
-
1194
-
1195
- Release 0.9.19 - 2011/10/07
1196
-
1197
- * Secondary outputs work only when error count exceededs retry_limit
1198
- * Secondary outputs retry upto secondary_limit
1199
- * Added Output#secondary_init
1200
- * Added unit test driver for output plugins
1201
- * Added Fluent::Test.test? method
1202
- * Added comparision methods (<=>, ==, eql? and hash) to Event class
1203
- * Added test cases for out_copy, out_roundrobin and out_file
1204
-
1205
-
1206
- Release 0.9.18 - 2011/10/04
1207
-
1208
- * Performance improvements
1209
- * in_tcp uses lazy deserialization
1210
- * Engine caches results of Match#match
1211
- * out_file caches results of strftime
1212
- * Fixed TextParser.register_template
1213
-
1214
-
1215
- Release 0.9.17 - 2011/10/03
1216
-
1217
- * TimeSlicedOutput caches results of strftime() for performance
1218
- * Fixed TextParser.register_template (thanks eiichiroi)
1219
- * Fixed fluent-cat --port argument to work
1220
-
1221
-
1222
- Release 0.9.16 - 2011/10/01
1223
-
1224
- * Fixed it can't use relative path for --plugin command line argument
1225
- * Fixed out_copy to work with non-repeatable event streams
1226
-
1227
-
1228
- Release 0.9.15 - 2011/09/21
1229
-
1230
- * Set default encoding to ASCII-8BIT
1231
- * Fixed thread issues in BasicBuffer
1232
- * Performance improvements
1233
-
1234
-
1235
- Release 0.9.14 - 2011/09/21
1236
-
1237
- * Fixed to write unexpected error to log files
1238
- * Plugin loader uses GemSpec if it is available to load newer plugin
1239
- * Added Config.bool_value method for plugins
1240
-
1241
-
1242
- Release 0.9.13 - 2011/09/21
1243
-
1244
- * Updated out_file plugin
1245
- * Uses localtime by default
1246
- * Uses \t to separate time, tag and JSON.
1247
- * Uses ISO-8601 for the time format
1248
-
1249
-
1250
- Release 0.9.12 - 2011/09/20
1251
-
1252
- * Updated out_file plugin
1253
- * Supports log compression
1254
- * Slices log files every day by default
1255
-
1256
-
1257
- Release 0.9.11 - 2011/09/19
1258
-
1259
- * Added out_null plugin
1260
- * Added out_roundrobin plugin
1261
- * in_http supports keep-alive
1262
- * in_tcp and in_unix detect network failure
1263
-
1264
-
1265
- Release 0.9.10 - 2011/09/07
1266
-
1267
- * Periodic timer enqueues buffer chunks only when queue is empty
1268
-
1269
-
1270
- Release 0.9.9 - 2011/09/06
1271
-
1272
- * in_tail strips \n at the end of log line
1273
- * Uses newer one if multiple plugins are found
1274
-
1275
-
1276
- Release 0.9.8 - 2011/08/16
1277
-
1278
- * in_http plugin supports 'Expect: 100-continue' header
1279
- * Added --user and --group command line arguments to change privilege
1280
- * Changed default retry_limit parameter from 8 to 17
1281
- * Changed default buffer_chunk_limit parameter from 1m to 16m
1282
- * Changed default buffer_queue_limit parameter from 100 to 64
1283
-
1284
-
1285
- Release 0.9.7 - 2011/08/06
1286
-
1287
- * Load plugins named fluent_plugin.rb installed by RubyGems
1288
- * Load plugins located on fluent/plugin/{buf,in,out}_{type} installed by RubyGems
1289
- * Removed out_tdlog plugin to fluent-plugin-td gem
1290
-
1291
-
1292
- Release 0.9.6 - 2011/08/06
1293
-
1294
- * Force flush buffered events on SIGUSR1
1295
- * out_tdlog uses event tag for the database and table name
1296
- * Fluent can log Fluent logs
1297
- * Colorize Fluent logs on console
1298
- * Changed default unix domain socket path to /var/run/fluent/fluent.sock
1299
- * Makefile.am and configure.in aware fakeroot
1300
-
1301
-
1302
- Release 0.9.5 - 2011/07/23
1303
-
1304
- * Added <secondary> tag that fallbacks to secondary output when it can't
1305
- write to primary output.
1306
- * <match> pattern supports **; matches any fragments recursively.
1307
- * <match> pattern supports {x,y,...}; matches any of the inner patterns.
1308
-
1309
-
1310
- Release 0.9.4 - 2011/07/22
1311
-
1312
- * Switched EventMachine to Cool.io
1313
- * in_tail continues to follow file if it is deleted on Linux
1314
- * Added fluentd --setup option that installs sample configuration file
1315
- * Added out_tdlog plugin
1316
-
1317
-
1318
- Release 0.9.3 - 2011/07/05
1319
-
1320
- * Disable EventMachine.epoll because it doesn't work correctly on
1321
- Ruby 1.9 with threads
1322
- * in_tcp and in_unix uses EventMachine instead of threads
1323
- * Set BasicSocket.do_not_reverse_lookup = true
1324
-
1325
-
1326
- Release 0.9.2 - 2011/07/03
1327
-
1328
- * Added TimeSlicedOutput that splits buffer chunk exactly based on the time
1329
- * Changed structure of buffers from queue to map + queue
1330
- * Show waring if configuration parameters are not used
1331
- * Added out_time_file plugin
1332
-
1333
-
1334
- Release 0.9.1 - 2011/06/26
1335
-
1336
- * Added in_tail plugin
1337
- * Added in_syslog plugin
1338
- * Added out_stdout plugin
1339
- * Added out_tcp plugin
1340
- * Added out_unix plugin
1341
- * Improved performance of in_http plugin by replacing WEBrick + thread
1342
- with EventMachine
1343
-
1344
-
1345
- Release 0.9.0 - 2011/06/20
1346
-
1347
- * First release
1348
-
276
+ See https://github.com/fluent/fluentd/blob/v0.12/ChangeLog for v0.12 changelog