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