fluentd 1.14.4-x64-mingw-ucrt
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 +7 -0
- data/.deepsource.toml +13 -0
- data/.drone.yml +35 -0
- data/.github/ISSUE_TEMPLATE/bug_report.yaml +70 -0
- data/.github/ISSUE_TEMPLATE/config.yml +5 -0
- data/.github/ISSUE_TEMPLATE/feature_request.yaml +38 -0
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
- data/.github/workflows/issue-auto-closer.yml +12 -0
- data/.github/workflows/linux-test.yaml +36 -0
- data/.github/workflows/macos-test.yaml +30 -0
- data/.github/workflows/stale-actions.yml +22 -0
- data/.github/workflows/windows-test.yaml +46 -0
- data/.gitignore +30 -0
- data/.gitlab-ci.yml +103 -0
- data/ADOPTERS.md +5 -0
- data/AUTHORS +2 -0
- data/CHANGELOG.md +2409 -0
- data/CONTRIBUTING.md +45 -0
- data/GOVERNANCE.md +55 -0
- data/Gemfile +9 -0
- data/GithubWorkflow.md +78 -0
- data/LICENSE +202 -0
- data/MAINTAINERS.md +11 -0
- data/README.md +97 -0
- data/Rakefile +79 -0
- data/SECURITY.md +18 -0
- data/bin/fluent-binlog-reader +7 -0
- data/bin/fluent-ca-generate +6 -0
- data/bin/fluent-cap-ctl +7 -0
- data/bin/fluent-cat +5 -0
- data/bin/fluent-ctl +7 -0
- data/bin/fluent-debug +5 -0
- data/bin/fluent-gem +9 -0
- data/bin/fluent-plugin-config-format +5 -0
- data/bin/fluent-plugin-generate +5 -0
- data/bin/fluentd +15 -0
- data/code-of-conduct.md +3 -0
- data/docs/SECURITY_AUDIT.pdf +0 -0
- data/example/copy_roundrobin.conf +39 -0
- data/example/counter.conf +18 -0
- data/example/filter_stdout.conf +22 -0
- data/example/in_forward.conf +14 -0
- data/example/in_forward_client.conf +37 -0
- data/example/in_forward_shared_key.conf +15 -0
- data/example/in_forward_tls.conf +14 -0
- data/example/in_forward_users.conf +24 -0
- data/example/in_forward_workers.conf +21 -0
- data/example/in_http.conf +16 -0
- data/example/in_out_forward.conf +17 -0
- data/example/in_sample_blocks.conf +17 -0
- data/example/in_sample_with_compression.conf +23 -0
- data/example/in_syslog.conf +15 -0
- data/example/in_tail.conf +14 -0
- data/example/in_tcp.conf +13 -0
- data/example/in_udp.conf +13 -0
- data/example/logevents.conf +25 -0
- data/example/multi_filters.conf +61 -0
- data/example/out_copy.conf +20 -0
- data/example/out_exec_filter.conf +42 -0
- data/example/out_file.conf +13 -0
- data/example/out_forward.conf +35 -0
- data/example/out_forward_buf_file.conf +23 -0
- data/example/out_forward_client.conf +109 -0
- data/example/out_forward_heartbeat_none.conf +16 -0
- data/example/out_forward_sd.conf +17 -0
- data/example/out_forward_shared_key.conf +36 -0
- data/example/out_forward_tls.conf +18 -0
- data/example/out_forward_users.conf +65 -0
- data/example/out_null.conf +36 -0
- data/example/sd.yaml +8 -0
- data/example/secondary_file.conf +42 -0
- data/example/suppress_config_dump.conf +7 -0
- data/example/v0_12_filter.conf +78 -0
- data/example/v1_literal_example.conf +36 -0
- data/example/worker_section.conf +36 -0
- data/fluent.conf +139 -0
- data/fluentd.gemspec +55 -0
- data/lib/fluent/agent.rb +168 -0
- data/lib/fluent/capability.rb +87 -0
- data/lib/fluent/clock.rb +66 -0
- data/lib/fluent/command/binlog_reader.rb +244 -0
- data/lib/fluent/command/bundler_injection.rb +45 -0
- data/lib/fluent/command/ca_generate.rb +184 -0
- data/lib/fluent/command/cap_ctl.rb +174 -0
- data/lib/fluent/command/cat.rb +365 -0
- data/lib/fluent/command/ctl.rb +177 -0
- data/lib/fluent/command/debug.rb +103 -0
- data/lib/fluent/command/fluentd.rb +374 -0
- data/lib/fluent/command/plugin_config_formatter.rb +308 -0
- data/lib/fluent/command/plugin_generator.rb +365 -0
- data/lib/fluent/compat/call_super_mixin.rb +76 -0
- data/lib/fluent/compat/detach_process_mixin.rb +33 -0
- data/lib/fluent/compat/exec_util.rb +129 -0
- data/lib/fluent/compat/file_util.rb +54 -0
- data/lib/fluent/compat/filter.rb +68 -0
- data/lib/fluent/compat/formatter.rb +111 -0
- data/lib/fluent/compat/formatter_utils.rb +85 -0
- data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
- data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
- data/lib/fluent/compat/input.rb +49 -0
- data/lib/fluent/compat/output.rb +721 -0
- data/lib/fluent/compat/output_chain.rb +60 -0
- data/lib/fluent/compat/parser.rb +310 -0
- data/lib/fluent/compat/parser_utils.rb +40 -0
- data/lib/fluent/compat/propagate_default.rb +62 -0
- data/lib/fluent/compat/record_filter_mixin.rb +34 -0
- data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
- data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
- data/lib/fluent/compat/socket_util.rb +165 -0
- data/lib/fluent/compat/string_util.rb +34 -0
- data/lib/fluent/compat/structured_format_mixin.rb +26 -0
- data/lib/fluent/compat/type_converter.rb +90 -0
- data/lib/fluent/config/basic_parser.rb +123 -0
- data/lib/fluent/config/configure_proxy.rb +424 -0
- data/lib/fluent/config/dsl.rb +152 -0
- data/lib/fluent/config/element.rb +265 -0
- data/lib/fluent/config/error.rb +32 -0
- data/lib/fluent/config/literal_parser.rb +286 -0
- data/lib/fluent/config/parser.rb +107 -0
- data/lib/fluent/config/section.rb +272 -0
- data/lib/fluent/config/types.rb +249 -0
- data/lib/fluent/config/v1_parser.rb +192 -0
- data/lib/fluent/config.rb +76 -0
- data/lib/fluent/configurable.rb +201 -0
- data/lib/fluent/counter/base_socket.rb +44 -0
- data/lib/fluent/counter/client.rb +297 -0
- data/lib/fluent/counter/error.rb +86 -0
- data/lib/fluent/counter/mutex_hash.rb +163 -0
- data/lib/fluent/counter/server.rb +273 -0
- data/lib/fluent/counter/store.rb +205 -0
- data/lib/fluent/counter/validator.rb +145 -0
- data/lib/fluent/counter.rb +23 -0
- data/lib/fluent/daemon.rb +15 -0
- data/lib/fluent/daemonizer.rb +88 -0
- data/lib/fluent/engine.rb +253 -0
- data/lib/fluent/env.rb +40 -0
- data/lib/fluent/error.rb +34 -0
- data/lib/fluent/event.rb +326 -0
- data/lib/fluent/event_router.rb +297 -0
- data/lib/fluent/ext_monitor_require.rb +28 -0
- data/lib/fluent/filter.rb +21 -0
- data/lib/fluent/fluent_log_event_router.rb +141 -0
- data/lib/fluent/formatter.rb +23 -0
- data/lib/fluent/input.rb +21 -0
- data/lib/fluent/label.rb +46 -0
- data/lib/fluent/load.rb +34 -0
- data/lib/fluent/log.rb +713 -0
- data/lib/fluent/match.rb +187 -0
- data/lib/fluent/mixin.rb +31 -0
- data/lib/fluent/msgpack_factory.rb +106 -0
- data/lib/fluent/oj_options.rb +62 -0
- data/lib/fluent/output.rb +29 -0
- data/lib/fluent/output_chain.rb +23 -0
- data/lib/fluent/parser.rb +23 -0
- data/lib/fluent/plugin/bare_output.rb +104 -0
- data/lib/fluent/plugin/base.rb +197 -0
- data/lib/fluent/plugin/buf_file.rb +213 -0
- data/lib/fluent/plugin/buf_file_single.rb +225 -0
- data/lib/fluent/plugin/buf_memory.rb +34 -0
- data/lib/fluent/plugin/buffer/chunk.rb +240 -0
- data/lib/fluent/plugin/buffer/file_chunk.rb +413 -0
- data/lib/fluent/plugin/buffer/file_single_chunk.rb +311 -0
- data/lib/fluent/plugin/buffer/memory_chunk.rb +91 -0
- data/lib/fluent/plugin/buffer.rb +918 -0
- data/lib/fluent/plugin/compressable.rb +96 -0
- data/lib/fluent/plugin/exec_util.rb +22 -0
- data/lib/fluent/plugin/file_util.rb +22 -0
- data/lib/fluent/plugin/file_wrapper.rb +187 -0
- data/lib/fluent/plugin/filter.rb +127 -0
- data/lib/fluent/plugin/filter_grep.rb +189 -0
- data/lib/fluent/plugin/filter_parser.rb +130 -0
- data/lib/fluent/plugin/filter_record_transformer.rb +324 -0
- data/lib/fluent/plugin/filter_stdout.rb +53 -0
- data/lib/fluent/plugin/formatter.rb +75 -0
- data/lib/fluent/plugin/formatter_csv.rb +78 -0
- data/lib/fluent/plugin/formatter_hash.rb +35 -0
- data/lib/fluent/plugin/formatter_json.rb +59 -0
- data/lib/fluent/plugin/formatter_ltsv.rb +44 -0
- data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
- data/lib/fluent/plugin/formatter_out_file.rb +53 -0
- data/lib/fluent/plugin/formatter_single_value.rb +36 -0
- data/lib/fluent/plugin/formatter_stdout.rb +76 -0
- data/lib/fluent/plugin/formatter_tsv.rb +40 -0
- data/lib/fluent/plugin/in_debug_agent.rb +71 -0
- data/lib/fluent/plugin/in_dummy.rb +18 -0
- data/lib/fluent/plugin/in_exec.rb +110 -0
- data/lib/fluent/plugin/in_forward.rb +473 -0
- data/lib/fluent/plugin/in_gc_stat.rb +72 -0
- data/lib/fluent/plugin/in_http.rb +667 -0
- data/lib/fluent/plugin/in_monitor_agent.rb +412 -0
- data/lib/fluent/plugin/in_object_space.rb +93 -0
- data/lib/fluent/plugin/in_sample.rb +141 -0
- data/lib/fluent/plugin/in_syslog.rb +276 -0
- data/lib/fluent/plugin/in_tail/position_file.rb +269 -0
- data/lib/fluent/plugin/in_tail.rb +1228 -0
- data/lib/fluent/plugin/in_tcp.rb +181 -0
- data/lib/fluent/plugin/in_udp.rb +92 -0
- data/lib/fluent/plugin/in_unix.rb +195 -0
- data/lib/fluent/plugin/input.rb +75 -0
- data/lib/fluent/plugin/metrics.rb +119 -0
- data/lib/fluent/plugin/metrics_local.rb +96 -0
- data/lib/fluent/plugin/multi_output.rb +195 -0
- data/lib/fluent/plugin/out_copy.rb +120 -0
- data/lib/fluent/plugin/out_exec.rb +105 -0
- data/lib/fluent/plugin/out_exec_filter.rb +319 -0
- data/lib/fluent/plugin/out_file.rb +334 -0
- data/lib/fluent/plugin/out_forward/ack_handler.rb +161 -0
- data/lib/fluent/plugin/out_forward/connection_manager.rb +113 -0
- data/lib/fluent/plugin/out_forward/error.rb +28 -0
- data/lib/fluent/plugin/out_forward/failure_detector.rb +84 -0
- data/lib/fluent/plugin/out_forward/handshake_protocol.rb +125 -0
- data/lib/fluent/plugin/out_forward/load_balancer.rb +114 -0
- data/lib/fluent/plugin/out_forward/socket_cache.rb +140 -0
- data/lib/fluent/plugin/out_forward.rb +826 -0
- data/lib/fluent/plugin/out_http.rb +275 -0
- data/lib/fluent/plugin/out_null.rb +74 -0
- data/lib/fluent/plugin/out_relabel.rb +32 -0
- data/lib/fluent/plugin/out_roundrobin.rb +84 -0
- data/lib/fluent/plugin/out_secondary_file.rb +131 -0
- data/lib/fluent/plugin/out_stdout.rb +74 -0
- data/lib/fluent/plugin/out_stream.rb +130 -0
- data/lib/fluent/plugin/output.rb +1556 -0
- data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
- data/lib/fluent/plugin/parser.rb +275 -0
- data/lib/fluent/plugin/parser_apache.rb +28 -0
- data/lib/fluent/plugin/parser_apache2.rb +88 -0
- data/lib/fluent/plugin/parser_apache_error.rb +26 -0
- data/lib/fluent/plugin/parser_csv.rb +114 -0
- data/lib/fluent/plugin/parser_json.rb +96 -0
- data/lib/fluent/plugin/parser_ltsv.rb +51 -0
- data/lib/fluent/plugin/parser_msgpack.rb +50 -0
- data/lib/fluent/plugin/parser_multiline.rb +152 -0
- data/lib/fluent/plugin/parser_nginx.rb +28 -0
- data/lib/fluent/plugin/parser_none.rb +36 -0
- data/lib/fluent/plugin/parser_regexp.rb +68 -0
- data/lib/fluent/plugin/parser_syslog.rb +496 -0
- data/lib/fluent/plugin/parser_tsv.rb +42 -0
- data/lib/fluent/plugin/sd_file.rb +156 -0
- data/lib/fluent/plugin/sd_srv.rb +135 -0
- data/lib/fluent/plugin/sd_static.rb +58 -0
- data/lib/fluent/plugin/service_discovery.rb +65 -0
- data/lib/fluent/plugin/socket_util.rb +22 -0
- data/lib/fluent/plugin/storage.rb +84 -0
- data/lib/fluent/plugin/storage_local.rb +162 -0
- data/lib/fluent/plugin/string_util.rb +22 -0
- data/lib/fluent/plugin.rb +206 -0
- data/lib/fluent/plugin_helper/cert_option.rb +191 -0
- data/lib/fluent/plugin_helper/child_process.rb +366 -0
- data/lib/fluent/plugin_helper/compat_parameters.rb +343 -0
- data/lib/fluent/plugin_helper/counter.rb +51 -0
- data/lib/fluent/plugin_helper/event_emitter.rb +100 -0
- data/lib/fluent/plugin_helper/event_loop.rb +170 -0
- data/lib/fluent/plugin_helper/extract.rb +104 -0
- data/lib/fluent/plugin_helper/formatter.rb +147 -0
- data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
- data/lib/fluent/plugin_helper/http_server/compat/server.rb +92 -0
- data/lib/fluent/plugin_helper/http_server/compat/ssl_context_extractor.rb +52 -0
- data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
- data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
- data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
- data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
- data/lib/fluent/plugin_helper/http_server/server.rb +93 -0
- data/lib/fluent/plugin_helper/http_server/ssl_context_builder.rb +41 -0
- data/lib/fluent/plugin_helper/http_server.rb +135 -0
- data/lib/fluent/plugin_helper/inject.rb +154 -0
- data/lib/fluent/plugin_helper/metrics.rb +129 -0
- data/lib/fluent/plugin_helper/parser.rb +147 -0
- data/lib/fluent/plugin_helper/record_accessor.rb +207 -0
- data/lib/fluent/plugin_helper/retry_state.rb +209 -0
- data/lib/fluent/plugin_helper/server.rb +801 -0
- data/lib/fluent/plugin_helper/service_discovery/manager.rb +146 -0
- data/lib/fluent/plugin_helper/service_discovery/round_robin_balancer.rb +43 -0
- data/lib/fluent/plugin_helper/service_discovery.rb +125 -0
- data/lib/fluent/plugin_helper/socket.rb +277 -0
- data/lib/fluent/plugin_helper/socket_option.rb +98 -0
- data/lib/fluent/plugin_helper/storage.rb +349 -0
- data/lib/fluent/plugin_helper/thread.rb +180 -0
- data/lib/fluent/plugin_helper/timer.rb +92 -0
- data/lib/fluent/plugin_helper.rb +75 -0
- data/lib/fluent/plugin_id.rb +93 -0
- data/lib/fluent/process.rb +22 -0
- data/lib/fluent/registry.rb +116 -0
- data/lib/fluent/root_agent.rb +372 -0
- data/lib/fluent/rpc.rb +94 -0
- data/lib/fluent/static_config_analysis.rb +194 -0
- data/lib/fluent/supervisor.rb +1054 -0
- data/lib/fluent/system_config.rb +187 -0
- data/lib/fluent/test/base.rb +78 -0
- data/lib/fluent/test/driver/base.rb +225 -0
- data/lib/fluent/test/driver/base_owned.rb +83 -0
- data/lib/fluent/test/driver/base_owner.rb +135 -0
- data/lib/fluent/test/driver/event_feeder.rb +98 -0
- data/lib/fluent/test/driver/filter.rb +57 -0
- data/lib/fluent/test/driver/formatter.rb +30 -0
- data/lib/fluent/test/driver/input.rb +31 -0
- data/lib/fluent/test/driver/multi_output.rb +53 -0
- data/lib/fluent/test/driver/output.rb +102 -0
- data/lib/fluent/test/driver/parser.rb +30 -0
- data/lib/fluent/test/driver/storage.rb +30 -0
- data/lib/fluent/test/driver/test_event_router.rb +45 -0
- data/lib/fluent/test/filter_test.rb +77 -0
- data/lib/fluent/test/formatter_test.rb +65 -0
- data/lib/fluent/test/helpers.rb +134 -0
- data/lib/fluent/test/input_test.rb +174 -0
- data/lib/fluent/test/log.rb +79 -0
- data/lib/fluent/test/output_test.rb +156 -0
- data/lib/fluent/test/parser_test.rb +70 -0
- data/lib/fluent/test/startup_shutdown.rb +46 -0
- data/lib/fluent/test.rb +58 -0
- data/lib/fluent/time.rb +512 -0
- data/lib/fluent/timezone.rb +171 -0
- data/lib/fluent/tls.rb +81 -0
- data/lib/fluent/unique_id.rb +39 -0
- data/lib/fluent/variable_store.rb +40 -0
- data/lib/fluent/version.rb +21 -0
- data/lib/fluent/winsvc.rb +103 -0
- data/templates/new_gem/Gemfile +3 -0
- data/templates/new_gem/README.md.erb +43 -0
- data/templates/new_gem/Rakefile +13 -0
- data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
- data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
- data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
- data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
- data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
- data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
- data/templates/new_gem/lib/fluent/plugin/storage.rb.erb +40 -0
- data/templates/new_gem/test/helper.rb.erb +8 -0
- data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_storage.rb.erb +18 -0
- data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
- data/templates/plugin_config_formatter/param.md-table.erb +10 -0
- data/templates/plugin_config_formatter/param.md.erb +34 -0
- data/templates/plugin_config_formatter/section.md.erb +12 -0
- data/test/command/test_binlog_reader.rb +362 -0
- data/test/command/test_ca_generate.rb +70 -0
- data/test/command/test_cap_ctl.rb +100 -0
- data/test/command/test_cat.rb +128 -0
- data/test/command/test_ctl.rb +57 -0
- data/test/command/test_fluentd.rb +1106 -0
- data/test/command/test_plugin_config_formatter.rb +398 -0
- data/test/command/test_plugin_generator.rb +109 -0
- data/test/compat/test_calls_super.rb +166 -0
- data/test/compat/test_parser.rb +92 -0
- data/test/config/assertions.rb +42 -0
- data/test/config/test_config_parser.rb +551 -0
- data/test/config/test_configurable.rb +1784 -0
- data/test/config/test_configure_proxy.rb +604 -0
- data/test/config/test_dsl.rb +415 -0
- data/test/config/test_element.rb +518 -0
- data/test/config/test_literal_parser.rb +309 -0
- data/test/config/test_plugin_configuration.rb +56 -0
- data/test/config/test_section.rb +191 -0
- data/test/config/test_system_config.rb +199 -0
- data/test/config/test_types.rb +408 -0
- data/test/counter/test_client.rb +563 -0
- data/test/counter/test_error.rb +44 -0
- data/test/counter/test_mutex_hash.rb +179 -0
- data/test/counter/test_server.rb +589 -0
- data/test/counter/test_store.rb +258 -0
- data/test/counter/test_validator.rb +137 -0
- data/test/helper.rb +155 -0
- data/test/helpers/fuzzy_assert.rb +89 -0
- data/test/helpers/process_extenstion.rb +33 -0
- data/test/plugin/data/2010/01/20100102-030405.log +0 -0
- data/test/plugin/data/2010/01/20100102-030406.log +0 -0
- data/test/plugin/data/2010/01/20100102.log +0 -0
- data/test/plugin/data/log/bar +0 -0
- data/test/plugin/data/log/foo/bar.log +0 -0
- data/test/plugin/data/log/foo/bar2 +0 -0
- data/test/plugin/data/log/test.log +0 -0
- data/test/plugin/data/sd_file/config +11 -0
- data/test/plugin/data/sd_file/config.json +17 -0
- data/test/plugin/data/sd_file/config.yaml +11 -0
- data/test/plugin/data/sd_file/config.yml +11 -0
- data/test/plugin/data/sd_file/invalid_config.yml +7 -0
- data/test/plugin/in_tail/test_fifo.rb +121 -0
- data/test/plugin/in_tail/test_io_handler.rb +140 -0
- data/test/plugin/in_tail/test_position_file.rb +379 -0
- data/test/plugin/out_forward/test_ack_handler.rb +101 -0
- data/test/plugin/out_forward/test_connection_manager.rb +145 -0
- data/test/plugin/out_forward/test_handshake_protocol.rb +112 -0
- data/test/plugin/out_forward/test_load_balancer.rb +106 -0
- data/test/plugin/out_forward/test_socket_cache.rb +149 -0
- data/test/plugin/test_bare_output.rb +131 -0
- data/test/plugin/test_base.rb +115 -0
- data/test/plugin/test_buf_file.rb +1275 -0
- data/test/plugin/test_buf_file_single.rb +833 -0
- data/test/plugin/test_buf_memory.rb +42 -0
- data/test/plugin/test_buffer.rb +1383 -0
- data/test/plugin/test_buffer_chunk.rb +198 -0
- data/test/plugin/test_buffer_file_chunk.rb +871 -0
- data/test/plugin/test_buffer_file_single_chunk.rb +611 -0
- data/test/plugin/test_buffer_memory_chunk.rb +339 -0
- data/test/plugin/test_compressable.rb +87 -0
- data/test/plugin/test_file_util.rb +96 -0
- data/test/plugin/test_file_wrapper.rb +126 -0
- data/test/plugin/test_filter.rb +368 -0
- data/test/plugin/test_filter_grep.rb +697 -0
- data/test/plugin/test_filter_parser.rb +731 -0
- data/test/plugin/test_filter_record_transformer.rb +577 -0
- data/test/plugin/test_filter_stdout.rb +207 -0
- data/test/plugin/test_formatter_csv.rb +136 -0
- data/test/plugin/test_formatter_hash.rb +38 -0
- data/test/plugin/test_formatter_json.rb +61 -0
- data/test/plugin/test_formatter_ltsv.rb +70 -0
- data/test/plugin/test_formatter_msgpack.rb +28 -0
- data/test/plugin/test_formatter_out_file.rb +116 -0
- data/test/plugin/test_formatter_single_value.rb +44 -0
- data/test/plugin/test_formatter_tsv.rb +76 -0
- data/test/plugin/test_in_debug_agent.rb +49 -0
- data/test/plugin/test_in_exec.rb +261 -0
- data/test/plugin/test_in_forward.rb +1180 -0
- data/test/plugin/test_in_gc_stat.rb +62 -0
- data/test/plugin/test_in_http.rb +1080 -0
- data/test/plugin/test_in_monitor_agent.rb +923 -0
- data/test/plugin/test_in_object_space.rb +60 -0
- data/test/plugin/test_in_sample.rb +190 -0
- data/test/plugin/test_in_syslog.rb +505 -0
- data/test/plugin/test_in_tail.rb +2363 -0
- data/test/plugin/test_in_tcp.rb +243 -0
- data/test/plugin/test_in_udp.rb +268 -0
- data/test/plugin/test_in_unix.rb +181 -0
- data/test/plugin/test_input.rb +137 -0
- data/test/plugin/test_metadata.rb +89 -0
- data/test/plugin/test_metrics.rb +294 -0
- data/test/plugin/test_metrics_local.rb +96 -0
- data/test/plugin/test_multi_output.rb +204 -0
- data/test/plugin/test_out_copy.rb +308 -0
- data/test/plugin/test_out_exec.rb +312 -0
- data/test/plugin/test_out_exec_filter.rb +606 -0
- data/test/plugin/test_out_file.rb +1037 -0
- data/test/plugin/test_out_forward.rb +1348 -0
- data/test/plugin/test_out_http.rb +428 -0
- data/test/plugin/test_out_null.rb +105 -0
- data/test/plugin/test_out_relabel.rb +28 -0
- data/test/plugin/test_out_roundrobin.rb +146 -0
- data/test/plugin/test_out_secondary_file.rb +458 -0
- data/test/plugin/test_out_stdout.rb +205 -0
- data/test/plugin/test_out_stream.rb +103 -0
- data/test/plugin/test_output.rb +1065 -0
- data/test/plugin/test_output_as_buffered.rb +2024 -0
- data/test/plugin/test_output_as_buffered_backup.rb +363 -0
- data/test/plugin/test_output_as_buffered_compress.rb +165 -0
- data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
- data/test/plugin/test_output_as_buffered_retries.rb +919 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +882 -0
- data/test/plugin/test_output_as_standard.rb +374 -0
- data/test/plugin/test_owned_by.rb +35 -0
- data/test/plugin/test_parser.rb +399 -0
- data/test/plugin/test_parser_apache.rb +42 -0
- data/test/plugin/test_parser_apache2.rb +47 -0
- data/test/plugin/test_parser_apache_error.rb +45 -0
- data/test/plugin/test_parser_csv.rb +200 -0
- data/test/plugin/test_parser_json.rb +138 -0
- data/test/plugin/test_parser_labeled_tsv.rb +160 -0
- data/test/plugin/test_parser_multiline.rb +111 -0
- data/test/plugin/test_parser_nginx.rb +88 -0
- data/test/plugin/test_parser_none.rb +52 -0
- data/test/plugin/test_parser_regexp.rb +289 -0
- data/test/plugin/test_parser_syslog.rb +650 -0
- data/test/plugin/test_parser_tsv.rb +122 -0
- data/test/plugin/test_sd_file.rb +228 -0
- data/test/plugin/test_sd_srv.rb +230 -0
- data/test/plugin/test_storage.rb +167 -0
- data/test/plugin/test_storage_local.rb +335 -0
- data/test/plugin/test_string_util.rb +26 -0
- data/test/plugin_helper/data/cert/cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/cert-with-CRLF.pem +19 -0
- data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
- data/test/plugin_helper/data/cert/cert.pem +19 -0
- data/test/plugin_helper/data/cert/cert_chains/ca-cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/cert_chains/ca-cert.pem +20 -0
- data/test/plugin_helper/data/cert/cert_chains/cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/cert_chains/cert.pem +40 -0
- data/test/plugin_helper/data/cert/empty.pem +0 -0
- data/test/plugin_helper/data/cert/generate_cert.rb +125 -0
- data/test/plugin_helper/data/cert/with_ca/ca-cert-key-pass.pem +30 -0
- data/test/plugin_helper/data/cert/with_ca/ca-cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/with_ca/ca-cert-pass.pem +20 -0
- data/test/plugin_helper/data/cert/with_ca/ca-cert.pem +20 -0
- data/test/plugin_helper/data/cert/with_ca/cert-key-pass.pem +30 -0
- data/test/plugin_helper/data/cert/with_ca/cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/with_ca/cert-pass.pem +21 -0
- data/test/plugin_helper/data/cert/with_ca/cert.pem +21 -0
- data/test/plugin_helper/data/cert/without_ca/cert-key-pass.pem +30 -0
- data/test/plugin_helper/data/cert/without_ca/cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/without_ca/cert-pass.pem +20 -0
- data/test/plugin_helper/data/cert/without_ca/cert.pem +20 -0
- data/test/plugin_helper/http_server/test_app.rb +65 -0
- data/test/plugin_helper/http_server/test_route.rb +32 -0
- data/test/plugin_helper/service_discovery/test_manager.rb +93 -0
- data/test/plugin_helper/service_discovery/test_round_robin_balancer.rb +21 -0
- data/test/plugin_helper/test_cert_option.rb +25 -0
- data/test/plugin_helper/test_child_process.rb +840 -0
- data/test/plugin_helper/test_compat_parameters.rb +358 -0
- data/test/plugin_helper/test_event_emitter.rb +80 -0
- data/test/plugin_helper/test_event_loop.rb +52 -0
- data/test/plugin_helper/test_extract.rb +194 -0
- data/test/plugin_helper/test_formatter.rb +255 -0
- data/test/plugin_helper/test_http_server_helper.rb +372 -0
- data/test/plugin_helper/test_inject.rb +561 -0
- data/test/plugin_helper/test_metrics.rb +137 -0
- data/test/plugin_helper/test_parser.rb +264 -0
- data/test/plugin_helper/test_record_accessor.rb +238 -0
- data/test/plugin_helper/test_retry_state.rb +442 -0
- data/test/plugin_helper/test_server.rb +1823 -0
- data/test/plugin_helper/test_service_discovery.rb +165 -0
- data/test/plugin_helper/test_socket.rb +146 -0
- data/test/plugin_helper/test_storage.rb +542 -0
- data/test/plugin_helper/test_thread.rb +164 -0
- data/test/plugin_helper/test_timer.rb +130 -0
- data/test/scripts/exec_script.rb +32 -0
- data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
- data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
- data/test/scripts/fluent/plugin/formatter_known.rb +8 -0
- data/test/scripts/fluent/plugin/out_test.rb +81 -0
- data/test/scripts/fluent/plugin/out_test2.rb +80 -0
- data/test/scripts/fluent/plugin/parser_known.rb +4 -0
- data/test/test_capability.rb +74 -0
- data/test/test_clock.rb +164 -0
- data/test/test_config.rb +202 -0
- data/test/test_configdsl.rb +148 -0
- data/test/test_daemonizer.rb +91 -0
- data/test/test_engine.rb +203 -0
- data/test/test_event.rb +531 -0
- data/test/test_event_router.rb +331 -0
- data/test/test_event_time.rb +199 -0
- data/test/test_filter.rb +121 -0
- data/test/test_fluent_log_event_router.rb +99 -0
- data/test/test_formatter.rb +366 -0
- data/test/test_input.rb +31 -0
- data/test/test_log.rb +994 -0
- data/test/test_logger_initializer.rb +46 -0
- data/test/test_match.rb +148 -0
- data/test/test_mixin.rb +351 -0
- data/test/test_msgpack_factory.rb +18 -0
- data/test/test_oj_options.rb +55 -0
- data/test/test_output.rb +278 -0
- data/test/test_plugin.rb +251 -0
- data/test/test_plugin_classes.rb +370 -0
- data/test/test_plugin_helper.rb +81 -0
- data/test/test_plugin_id.rb +119 -0
- data/test/test_process.rb +14 -0
- data/test/test_root_agent.rb +951 -0
- data/test/test_static_config_analysis.rb +177 -0
- data/test/test_supervisor.rb +601 -0
- data/test/test_test_drivers.rb +136 -0
- data/test/test_time_formatter.rb +301 -0
- data/test/test_time_parser.rb +362 -0
- data/test/test_tls.rb +65 -0
- data/test/test_unique_id.rb +47 -0
- data/test/test_variable_store.rb +65 -0
- metadata +1261 -0
data/CHANGELOG.md
ADDED
@@ -0,0 +1,2409 @@
|
|
1
|
+
# v1.14.4
|
2
|
+
|
3
|
+
## Release v1.14.4 - 2022/01/06
|
4
|
+
|
5
|
+
### Enhancement
|
6
|
+
|
7
|
+
* `in_tail`: Add option to skip long lines (`max_line_size`)
|
8
|
+
https://github.com/fluent/fluentd/pull/3565
|
9
|
+
|
10
|
+
### Bug fix
|
11
|
+
|
12
|
+
* Incorrect BufferChunkOverflowError when each event size is < `chunk_limit_size`
|
13
|
+
https://github.com/fluent/fluentd/pull/3560
|
14
|
+
* On macOS with Ruby 2.7/3.0, `out_file` fails to write events if `append` is true.
|
15
|
+
https://github.com/fluent/fluentd/pull/3579
|
16
|
+
* test: Fix unstable test cases
|
17
|
+
https://github.com/fluent/fluentd/pull/3574
|
18
|
+
https://github.com/fluent/fluentd/pull/3577
|
19
|
+
|
20
|
+
# v1.14.3
|
21
|
+
|
22
|
+
## Release v1.14.3 - 2021/11/26
|
23
|
+
|
24
|
+
### Enhancement
|
25
|
+
|
26
|
+
* Changed to accept `http_parser.rb` 0.8.0.
|
27
|
+
`http_parser.rb` 0.8.0 is ready for Ractor.
|
28
|
+
https://github.com/fluent/fluentd/pull/3544
|
29
|
+
|
30
|
+
### Bug fix
|
31
|
+
|
32
|
+
* in_tail: Fixed a bug that no new logs are read when
|
33
|
+
`enable_stat_watcher true` and `enable_watch_timer false` is set.
|
34
|
+
https://github.com/fluent/fluentd/pull/3541
|
35
|
+
* in_tail: Fixed a bug that the beginning and initial lines are lost
|
36
|
+
after startup when `read_from_head false` and path includes wildcard '*'.
|
37
|
+
https://github.com/fluent/fluentd/pull/3542
|
38
|
+
* Fixed a bug that processing messages were lost when
|
39
|
+
BufferChunkOverflowError was thrown even though only a specific
|
40
|
+
message size exceeds chunk_limit_size.
|
41
|
+
https://github.com/fluent/fluentd/pull/3553
|
42
|
+
https://github.com/fluent/fluentd/pull/3562
|
43
|
+
|
44
|
+
### Misc
|
45
|
+
|
46
|
+
* Bump up required version of `win32-service` gem.
|
47
|
+
newer version is required to implement additional `fluent-ctl` commands.
|
48
|
+
https://github.com/fluent/fluentd/pull/3556
|
49
|
+
|
50
|
+
# v1.14.2
|
51
|
+
|
52
|
+
## Release v1.14.2 - 2021/10/29
|
53
|
+
|
54
|
+
IMPORTANT: This release contain the fix for CVE-2021-41186 -
|
55
|
+
ReDoS vulnerability in `parser_apache2`.
|
56
|
+
This vulnerability is affected from Fluentd v0.14.14 to v1.14.1.
|
57
|
+
We recommend to upgrade Fluentd to v1.14.2 or use patched version of
|
58
|
+
`parser_apache2` plugin.
|
59
|
+
|
60
|
+
### Enhancement
|
61
|
+
|
62
|
+
* fluent-cat: Add `--event-time` option to send specified event time for testing.
|
63
|
+
|
64
|
+
### Bug fix
|
65
|
+
|
66
|
+
* Fixed to generate correct epoch timestamp even after switching Daylight Saving Time
|
67
|
+
https://github.com/fluent/fluentd/pull/3524
|
68
|
+
* Fixed ReDoS vulnerability in parser_apache2.
|
69
|
+
This vulnerability is caused by a certain pattern of a broken apache log.
|
70
|
+
|
71
|
+
# v1.14.1
|
72
|
+
|
73
|
+
## Release v1.14.1 - 2021/09/29
|
74
|
+
|
75
|
+
### Enhancement
|
76
|
+
|
77
|
+
* in_tail: Added file related metrics.
|
78
|
+
These metrics should be collected same as fluent-bit's in_tail.
|
79
|
+
https://github.com/fluent/fluentd/pull/3504
|
80
|
+
* out_forward: Changed to use metrics mechanism for node statistics
|
81
|
+
https://github.com/fluent/fluentd/pull/3506
|
82
|
+
|
83
|
+
### Bug fix
|
84
|
+
|
85
|
+
* in_tail: Fixed a crash bug that it raise undefined method of eof? error.
|
86
|
+
This error may happen only when `read_bytes_limit_per_second` was specified.
|
87
|
+
https://github.com/fluent/fluentd/pull/3500
|
88
|
+
* out_forward: Fixed a bug that node statistics information is not included correctly.
|
89
|
+
https://github.com/fluent/fluentd/pull/3503
|
90
|
+
https://github.com/fluent/fluentd/pull/3507
|
91
|
+
* Fixed a error when using `@include` directive
|
92
|
+
It was occurred when http/https scheme URI is used in `@include` directive with Ruby 3.
|
93
|
+
https://github.com/fluent/fluentd/pull/3517
|
94
|
+
* out_copy: Fixed to suppress a wrong warning for `ignore_if_prev_success`
|
95
|
+
It didn't work even if a user set it.
|
96
|
+
https://github.com/fluent/fluentd/pull/3515
|
97
|
+
* Fixed not to output nanoseconds field of next retry time in warning log
|
98
|
+
Then, inappropriate labels in log are also fixed. (retry_time -> retry_times,
|
99
|
+
next_retry_seconds -> next_retry_time)
|
100
|
+
https://github.com/fluent/fluentd/pull/3518
|
101
|
+
|
102
|
+
# v1.14.0
|
103
|
+
|
104
|
+
## Release v1.14.0 - 2021/08/30
|
105
|
+
|
106
|
+
### Enhancement
|
107
|
+
|
108
|
+
* Added `enable_input_metrics`, `enable_size_metrics` system
|
109
|
+
configuration parameter
|
110
|
+
This feature might need to pay higher CPU cost, so input event metrics
|
111
|
+
features are disabled by default. These features are also enabled by
|
112
|
+
`--enable-input-metrics`,`--enable-size-metrics` command line
|
113
|
+
option.
|
114
|
+
https://github.com/fluent/fluentd/pull/3440
|
115
|
+
* Added reserved word `@ROOT` for getting root router.
|
116
|
+
This is incompatible change. Do not use `@ROOT` for label name.
|
117
|
+
https://github.com/fluent/fluentd/pull/3358
|
118
|
+
* in_syslog: Added `send_keepalive_packet` option
|
119
|
+
https://github.com/fluent/fluentd/pull/3474
|
120
|
+
* in_http: Added `cors_allow_credentials` option.
|
121
|
+
This option tells browsers whether to expose the response to
|
122
|
+
frontend when the credentials mode is "include".
|
123
|
+
https://github.com/fluent/fluentd/pull/3481
|
124
|
+
https://github.com/fluent/fluentd/pull/3491
|
125
|
+
|
126
|
+
### Bug fix
|
127
|
+
|
128
|
+
* in_tail: Fixed a bug that deleted paths are not removed
|
129
|
+
from pos file by file compaction at start up
|
130
|
+
https://github.com/fluent/fluentd/pull/3467
|
131
|
+
* in_tail: Revived a warning message of retrying unaccessible file
|
132
|
+
https://github.com/fluent/fluentd/pull/3478
|
133
|
+
* TLSServer: Fixed a crash bug on logging peer host name errors
|
134
|
+
https://github.com/fluent/fluentd/pull/3483
|
135
|
+
|
136
|
+
### Misc
|
137
|
+
|
138
|
+
* Added metrics plugin mechanism
|
139
|
+
The implementations is changed to use metrics plugin.
|
140
|
+
In the future, 3rd party plugin will be able to handle these metrics.
|
141
|
+
https://github.com/fluent/fluentd/pull/3471
|
142
|
+
https://github.com/fluent/fluentd/pull/3473
|
143
|
+
https://github.com/fluent/fluentd/pull/3479
|
144
|
+
https://github.com/fluent/fluentd/pull/3484
|
145
|
+
|
146
|
+
# v1.13.3
|
147
|
+
|
148
|
+
## Release v1.13.3 - 2021/07/27
|
149
|
+
|
150
|
+
### Bug fix
|
151
|
+
|
152
|
+
* in_tail: Care DeletePending state on Windows
|
153
|
+
https://github.com/fluent/fluentd/pull/3457
|
154
|
+
https://github.com/fluent/fluentd/pull/3460
|
155
|
+
* in_tail: Fix some pos_file bugs.
|
156
|
+
Avoid deleting pos_file entries unexpectedly when both
|
157
|
+
`pos_file_compaction_interval` and `follow_inode` are enabled.
|
158
|
+
Use `bytesize` instead of `size` for path length.
|
159
|
+
https://github.com/fluent/fluentd/pull/3459
|
160
|
+
* in_tail: Fix detecting rotation twice on `follow_inode`.
|
161
|
+
https://github.com/fluent/fluentd/pull/3466
|
162
|
+
|
163
|
+
### Misc
|
164
|
+
|
165
|
+
* Remove needless spaces in a sample config file
|
166
|
+
https://github.com/fluent/fluentd/pull/3456
|
167
|
+
|
168
|
+
### Enhancement
|
169
|
+
|
170
|
+
# v1.13.2
|
171
|
+
|
172
|
+
## Release v1.13.2 - 2021/07/12
|
173
|
+
|
174
|
+
### Enhancement
|
175
|
+
|
176
|
+
* fluent-plugin-generate: Storage plugin was supported.
|
177
|
+
https://github.com/fluent/fluentd/pull/3426
|
178
|
+
* parser_json: Added support to customize configuration of oj options.
|
179
|
+
Use `FLUENT_OJ_OPTION_BIGDECIMAL_LOAD`, `FLUENT_OJ_OPTION_MAX_NESTING`,
|
180
|
+
`FLUENT_OJ_OPTION_MODE`, and `FLUENT_OJ_OPTION_USE_TO_JSON` environment
|
181
|
+
variable to configure it.
|
182
|
+
https://github.com/fluent/fluentd/pull/3315
|
183
|
+
|
184
|
+
### Bug fix
|
185
|
+
|
186
|
+
* binlog_reader: Fixed a crash bug by missing "fluent/env" dependency.
|
187
|
+
https://github.com/fluent/fluentd/pull/3443
|
188
|
+
* Fixed a crash bug on outputting log at the early stage when parsing
|
189
|
+
config file. This is a regression since v1.13.0. If you use invalid
|
190
|
+
'@' prefix parameter, remove it as a workaround.
|
191
|
+
https://github.com/fluent/fluentd/pull/3451
|
192
|
+
* in_tail: Fixed a bug that when rotation is occurred, remaining lines
|
193
|
+
will be discarded if the throttling feature is enabled.
|
194
|
+
https://github.com/fluent/fluentd/pull/3390
|
195
|
+
* fluent-plugin-generate: Fixed a crash bug during gemspec generation.
|
196
|
+
It was unexpectedly introduced by #3305, thus this bug was a
|
197
|
+
regression since 1.12.3.
|
198
|
+
https://github.com/fluent/fluentd/pull/3444
|
199
|
+
|
200
|
+
### Misc
|
201
|
+
|
202
|
+
* Fixed the runtime dependency version of http_parse.rb to 0.7.0.
|
203
|
+
It was fixed because false positive detection is occurred frequently
|
204
|
+
by security scanning tools.
|
205
|
+
https://github.com/fluent/fluentd/pull/3450
|
206
|
+
|
207
|
+
# v1.13.1
|
208
|
+
|
209
|
+
## Release v1.13.1 - 2021/06/25
|
210
|
+
|
211
|
+
### Bug fix
|
212
|
+
|
213
|
+
* out_forward: Fixed a race condition on handshake
|
214
|
+
It's caused by using a same unpacker from multiple threads.
|
215
|
+
https://github.com/fluent/fluentd/pull/3405
|
216
|
+
https://github.com/fluent/fluentd/pull/3406
|
217
|
+
* in_tail: Fixed to remove too much verbose debugging logs
|
218
|
+
It was unexpectedly introduced by #3185 log throttling feature.
|
219
|
+
https://github.com/fluent/fluentd/pull/3418
|
220
|
+
* Fixed not to echo back the provides path as is on a 404 error
|
221
|
+
There was a potential cross-site scripting vector even though
|
222
|
+
it is quite difficult to exploit.
|
223
|
+
https://github.com/fluent/fluentd/pull/3427
|
224
|
+
|
225
|
+
### Misc
|
226
|
+
|
227
|
+
* Pretty print for Fluent::Config::Section has been supported
|
228
|
+
for debugging
|
229
|
+
https://github.com/fluent/fluentd/pull/3398
|
230
|
+
* CI: Dropped to run CI for Ruby 2.5
|
231
|
+
https://github.com/fluent/fluentd/pull/3412
|
232
|
+
|
233
|
+
# v1.13
|
234
|
+
|
235
|
+
## Release v1.13.0 - 2021/05/29
|
236
|
+
|
237
|
+
### Enhancement
|
238
|
+
|
239
|
+
* in_tail: Handle log throttling per file feature
|
240
|
+
https://github.com/fluent/fluentd/pull/3185
|
241
|
+
https://github.com/fluent/fluentd/pull/3364
|
242
|
+
https://github.com/fluent/fluentd/pull/3379
|
243
|
+
* Extend to support service discovery manager in simpler way
|
244
|
+
https://github.com/fluent/fluentd/pull/3299
|
245
|
+
https://github.com/fluent/fluentd/pull/3362
|
246
|
+
* in_http: HTTP GET requests has been supported
|
247
|
+
https://github.com/fluent/fluentd/pull/3373
|
248
|
+
* The log rotate settings in system configuration has been supported
|
249
|
+
https://github.com/fluent/fluentd/pull/3352
|
250
|
+
|
251
|
+
### Bug fix
|
252
|
+
|
253
|
+
* Fix to disable `trace_instruction` when
|
254
|
+
`RubyVM::InstructionSequence` is available. It improves
|
255
|
+
compatibility with `truffleruby` some extent.
|
256
|
+
https://github.com/fluent/fluentd/pull/3376
|
257
|
+
* in_tail: Safely skip files which are used by another process on
|
258
|
+
Windows. It improves exception handling about
|
259
|
+
`ERROR_SHARING_VIOLATION` on Windows.
|
260
|
+
https://github.com/fluent/fluentd/pull/3378
|
261
|
+
* fluent-cat: the issue resending secondary file in specific format
|
262
|
+
has been fixed
|
263
|
+
https://github.com/fluent/fluentd/pull/3368
|
264
|
+
* in_tail: Shutdown immediately & safely even if reading huge files
|
265
|
+
Note that `skip_refresh_on_startup` must be enabled.
|
266
|
+
https://github.com/fluent/fluentd/pull/3380
|
267
|
+
|
268
|
+
### Misc
|
269
|
+
|
270
|
+
* example: Change a path to backup_path in counter_server correctly
|
271
|
+
https://github.com/fluent/fluentd/pull/3359
|
272
|
+
* README: Update link to community forum to discuss.fluentd.org
|
273
|
+
https://github.com/fluent/fluentd/pull/3360
|
274
|
+
|
275
|
+
# v1.12
|
276
|
+
|
277
|
+
## Release v1.12.4 - 2021/05/26
|
278
|
+
|
279
|
+
### Bug fix
|
280
|
+
|
281
|
+
* in_tail: Fix a bug that refresh_watcher fails to handle file rotations
|
282
|
+
|
283
|
+
## Release v1.12.3 - 2021/04/23
|
284
|
+
|
285
|
+
### Enhancement
|
286
|
+
|
287
|
+
* plugin_helper: Allow TLS to use keep-alive socket option
|
288
|
+
https://github.com/fluent/fluentd/pull/3308
|
289
|
+
|
290
|
+
### Bug fix
|
291
|
+
|
292
|
+
* parser_csv, parser_syslog: Fix a naming conflict on parser_type
|
293
|
+
https://github.com/fluent/fluentd/pull/3302
|
294
|
+
* in_tail: Fix incorrect error code & message on Windows
|
295
|
+
https://github.com/fluent/fluentd/pull/3325
|
296
|
+
https://github.com/fluent/fluentd/pull/3329
|
297
|
+
https://github.com/fluent/fluentd/pull/3331
|
298
|
+
https://github.com/fluent/fluentd/pull/3337
|
299
|
+
* in_tail: Fix a crash bug on catching a short-lived log
|
300
|
+
https://github.com/fluent/fluentd/pull/3328
|
301
|
+
* storage_local: Fix position file corruption issue on concurrent gracefulReloads
|
302
|
+
https://github.com/fluent/fluentd/pull/3335
|
303
|
+
* Fix incorrect warnings about ${chunk_id} with out_s3
|
304
|
+
https://github.com/fluent/fluentd/pull/3339
|
305
|
+
* TLS Server: Add peer information to error log message
|
306
|
+
https://github.com/fluent/fluentd/pull/3330
|
307
|
+
|
308
|
+
### Misc
|
309
|
+
|
310
|
+
* fluent-plugin-generate: add note about plugin name
|
311
|
+
https://github.com/fluent/fluentd/pull/3303
|
312
|
+
* fluent-plugin-generate: Use same depended gem version with fluentd
|
313
|
+
https://github.com/fluent/fluentd/pull/3305
|
314
|
+
* Fix some broken unit tests and improve CI's stability
|
315
|
+
https://github.com/fluent/fluentd/pull/3304
|
316
|
+
https://github.com/fluent/fluentd/pull/3307
|
317
|
+
https://github.com/fluent/fluentd/pull/3312
|
318
|
+
https://github.com/fluent/fluentd/pull/3313
|
319
|
+
https://github.com/fluent/fluentd/pull/3314
|
320
|
+
https://github.com/fluent/fluentd/pull/3316
|
321
|
+
https://github.com/fluent/fluentd/pull/3336
|
322
|
+
* Permit to install with win32-service 2.2.0 on Windows
|
323
|
+
https://github.com/fluent/fluentd/pull/3343
|
324
|
+
|
325
|
+
## Release v1.12.2 - 2021/03/29
|
326
|
+
|
327
|
+
### Enhancement
|
328
|
+
|
329
|
+
* out_copy: Add ignore_if_prev_successes
|
330
|
+
https://github.com/fluent/fluentd/pull/3190
|
331
|
+
https://github.com/fluent/fluentd/pull/3287
|
332
|
+
* Support multiple kind of timestamp format
|
333
|
+
https://github.com/fluent/fluentd/pull/3252
|
334
|
+
* formatter_ltsv: suppress delimiters in output
|
335
|
+
https://github.com/fluent/fluentd/pull/1666
|
336
|
+
https://github.com/fluent/fluentd/pull/3288
|
337
|
+
https://github.com/fluent/fluentd/pull/3289
|
338
|
+
|
339
|
+
### Bug fix
|
340
|
+
|
341
|
+
* in_tail: Expect ENOENT during stat
|
342
|
+
https://github.com/fluent/fluentd/pull/3275
|
343
|
+
* out_forward: Prevent transferring duplicate logs on restart
|
344
|
+
https://github.com/fluent/fluentd/pull/3267
|
345
|
+
https://github.com/fluent/fluentd/pull/3285
|
346
|
+
* in_tail: Handle to send rotated logs when mv is used for rotating
|
347
|
+
https://github.com/fluent/fluentd/pull/3294
|
348
|
+
* fluent-plugin-config-format: Fill an uninitialized instance variable
|
349
|
+
https://github.com/fluent/fluentd/pull/3297
|
350
|
+
* Fix MessagePackEventStream issue with Enumerable methods
|
351
|
+
https://github.com/fluent/fluentd/pull/2116
|
352
|
+
|
353
|
+
### Misc
|
354
|
+
|
355
|
+
* Add webrick to support Ruby 3.0
|
356
|
+
https://github.com/fluent/fluentd/pull/3257
|
357
|
+
* Suggest Discource instead of Google Groups
|
358
|
+
https://github.com/fluent/fluentd/pull/3261
|
359
|
+
* Update MAINTAINERS.md
|
360
|
+
https://github.com/fluent/fluentd/pull/3282
|
361
|
+
* Introduce DeepSource to check code quality
|
362
|
+
https://github.com/fluent/fluentd/pull/3286
|
363
|
+
https://github.com/fluent/fluentd/pull/3259
|
364
|
+
https://github.com/fluent/fluentd/pull/3291
|
365
|
+
* Migrate to GitHub Actions and stabilize tests
|
366
|
+
https://github.com/fluent/fluentd/pull/3266
|
367
|
+
https://github.com/fluent/fluentd/pull/3268
|
368
|
+
https://github.com/fluent/fluentd/pull/3281
|
369
|
+
https://github.com/fluent/fluentd/pull/3283
|
370
|
+
https://github.com/fluent/fluentd/pull/3290
|
371
|
+
|
372
|
+
## Release v1.12.1 - 2021/02/18
|
373
|
+
|
374
|
+
### Enhancement
|
375
|
+
|
376
|
+
* out_http: Add `headers_from_placeholders` parameter
|
377
|
+
https://github.com/fluent/fluentd/pull/3241
|
378
|
+
* fluent-plugin-config-format: Add `--table` option to use markdown table
|
379
|
+
https://github.com/fluent/fluentd/pull/3240
|
380
|
+
* Add `--disable-shared-socket`/`disable_shared_socket` to disable ServerEngine's shared socket setup
|
381
|
+
https://github.com/fluent/fluentd/pull/3250
|
382
|
+
|
383
|
+
### Bug fix
|
384
|
+
|
385
|
+
* ca_generate: Fix creating TLS certification files which include broken extensions
|
386
|
+
https://github.com/fluent/fluentd/pull/3246
|
387
|
+
* test: Drop TLS 1.1 tests
|
388
|
+
https://github.com/fluent/fluentd/pull/3256
|
389
|
+
* Remove old gem constraints to support Ruby 3
|
390
|
+
|
391
|
+
### Misc
|
392
|
+
|
393
|
+
* Use GitHub Actions
|
394
|
+
https://github.com/fluent/fluentd/pull/3233
|
395
|
+
https://github.com/fluent/fluentd/pull/3255
|
396
|
+
|
397
|
+
## Release v1.12.0 - 2021/01/05
|
398
|
+
|
399
|
+
### New feature
|
400
|
+
|
401
|
+
* in_tail: Add `follow_inode` to support log rotation with wild card
|
402
|
+
https://github.com/fluent/fluentd/pull/2992
|
403
|
+
* in_tail: Handle linux capability
|
404
|
+
https://github.com/fluent/fluentd/pull/3155
|
405
|
+
https://github.com/fluent/fluentd/pull/3162
|
406
|
+
* windows: Add win32 events alternative to unix signals
|
407
|
+
https://github.com/fluent/fluentd/pull/3131
|
408
|
+
|
409
|
+
### Enhancement
|
410
|
+
|
411
|
+
* buffer: Enable metadata comparison optimization on all platforms
|
412
|
+
https://github.com/fluent/fluentd/pull/3095
|
413
|
+
* fluent-plugin-config-formatter: Handle `service_discovery` type
|
414
|
+
https://github.com/fluent/fluentd/pull/3178
|
415
|
+
* in_http: Add `add_query_params` parameter to add query params to event record
|
416
|
+
https://github.com/fluent/fluentd/pull/3197
|
417
|
+
* inject: Support `unixtime_micros` and `unixtime_nanos` in `time_type`
|
418
|
+
https://github.com/fluent/fluentd/pull/3220
|
419
|
+
* Refactoring code
|
420
|
+
https://github.com/fluent/fluentd/pull/3167
|
421
|
+
https://github.com/fluent/fluentd/pull/3170
|
422
|
+
https://github.com/fluent/fluentd/pull/3180
|
423
|
+
https://github.com/fluent/fluentd/pull/3196
|
424
|
+
https://github.com/fluent/fluentd/pull/3213
|
425
|
+
https://github.com/fluent/fluentd/pull/3222
|
426
|
+
|
427
|
+
### Bug fix
|
428
|
+
|
429
|
+
* output: Prevent retry.step from being called too many times in a short time
|
430
|
+
https://github.com/fluent/fluentd/pull/3203
|
431
|
+
|
432
|
+
# v1.11
|
433
|
+
|
434
|
+
## Release v1.11.5 - 2020/11/06
|
435
|
+
|
436
|
+
### Enhancement
|
437
|
+
|
438
|
+
* formatter: Provide `newline` parameter to support `CRLF`
|
439
|
+
https://github.com/fluent/fluentd/pull/3152
|
440
|
+
* out_http: adding support for intermediate certificates
|
441
|
+
https://github.com/fluent/fluentd/pull/3146
|
442
|
+
* Update serverengine dependency to 2.2.2 or later
|
443
|
+
|
444
|
+
### Bug fix
|
445
|
+
|
446
|
+
* Fix a bug that windows service isn't stopped gracefuly
|
447
|
+
https://github.com/fluent/fluentd/pull/3156
|
448
|
+
|
449
|
+
## Release v1.11.4 - 2020/10/13
|
450
|
+
|
451
|
+
### Enhancement
|
452
|
+
|
453
|
+
* inject: Support `unixtime_millis` in `time_type` parameter
|
454
|
+
https://github.com/fluent/fluentd/pull/3145
|
455
|
+
|
456
|
+
### Bug fix
|
457
|
+
|
458
|
+
* out_http: Fix broken data with `json_array true`
|
459
|
+
https://github.com/fluent/fluentd/pull/3144
|
460
|
+
* output: Fix wrong logging issue for `${chunk_id}`
|
461
|
+
https://github.com/fluent/fluentd/pull/3134
|
462
|
+
|
463
|
+
## Release v1.11.3 - 2020/09/30
|
464
|
+
|
465
|
+
### Enhancement
|
466
|
+
|
467
|
+
* in_exec: Add `connect_mode` parameter to read stderr
|
468
|
+
https://github.com/fluent/fluentd/pull/3108
|
469
|
+
* parser_json: Improve the performance
|
470
|
+
https://github.com/fluent/fluentd/pull/3109
|
471
|
+
* log: Add `ignore_same_log_interval` parameter
|
472
|
+
https://github.com/fluent/fluentd/pull/3119
|
473
|
+
* Upgrade win32 gems
|
474
|
+
https://github.com/fluent/fluentd/pull/3100
|
475
|
+
* Refactoring code
|
476
|
+
https://github.com/fluent/fluentd/pull/3094
|
477
|
+
https://github.com/fluent/fluentd/pull/3118
|
478
|
+
|
479
|
+
### Bug fix
|
480
|
+
|
481
|
+
* buffer: Fix calculation of timekey stats
|
482
|
+
https://github.com/fluent/fluentd/pull/3018
|
483
|
+
* buffer: fix binmode usage for prevent gc
|
484
|
+
https://github.com/fluent/fluentd/pull/3138
|
485
|
+
|
486
|
+
## Release v1.11.2 - 2020/08/04
|
487
|
+
|
488
|
+
### Enhancement
|
489
|
+
|
490
|
+
* `in_dummy` renamed to `in_sample`
|
491
|
+
https://github.com/fluent/fluentd/pull/3065
|
492
|
+
* Allow regular expression in filter/match directive
|
493
|
+
https://github.com/fluent/fluentd/pull/3071
|
494
|
+
* Refactoring code
|
495
|
+
https://github.com/fluent/fluentd/pull/3051
|
496
|
+
|
497
|
+
### Bug fix
|
498
|
+
|
499
|
+
* buffer: Fix log message for `chunk_limit_records` case
|
500
|
+
https://github.com/fluent/fluentd/pull/3079
|
501
|
+
* buffer: Fix timekey optimization for non-windows platform
|
502
|
+
https://github.com/fluent/fluentd/pull/3092
|
503
|
+
* cert: Raise an error for broken certificate file
|
504
|
+
https://github.com/fluent/fluentd/pull/3086
|
505
|
+
* cert: Set TLS ciphers list correcty on older OpenSSL
|
506
|
+
https://github.com/fluent/fluentd/pull/3093
|
507
|
+
|
508
|
+
## Release v1.11.1 - 2020/06/22
|
509
|
+
|
510
|
+
### Enhancement
|
511
|
+
|
512
|
+
* in_http: Add `dump_error_log` parameter
|
513
|
+
https://github.com/fluent/fluentd/pull/3035
|
514
|
+
* in_http: Improve time field handling
|
515
|
+
https://github.com/fluent/fluentd/pull/3046
|
516
|
+
* Refactoring code
|
517
|
+
https://github.com/fluent/fluentd/pull/3047
|
518
|
+
|
519
|
+
### Bug fix
|
520
|
+
|
521
|
+
* in_tail: Use actual path instead of based pattern for ignore list
|
522
|
+
https://github.com/fluent/fluentd/pull/3042
|
523
|
+
* child_process helper: Fix child process failure due to SIGPIPE if the command uses stdout
|
524
|
+
https://github.com/fluent/fluentd/pull/3044
|
525
|
+
|
526
|
+
## Release v1.11.0 - 2020/06/04
|
527
|
+
|
528
|
+
### New feature
|
529
|
+
|
530
|
+
* in_unix: Use v1 API
|
531
|
+
https://github.com/fluent/fluentd/pull/2992
|
532
|
+
|
533
|
+
### Enhancement
|
534
|
+
|
535
|
+
* parser_syslog: Support any `time_format` for RFC3164 string parser
|
536
|
+
https://github.com/fluent/fluentd/pull/3014
|
537
|
+
* parser_syslog: Add new parser for RFC5424
|
538
|
+
https://github.com/fluent/fluentd/pull/3015
|
539
|
+
* Refactoring code
|
540
|
+
https://github.com/fluent/fluentd/pull/3019
|
541
|
+
|
542
|
+
### Bug fix
|
543
|
+
|
544
|
+
* in_gc_stat: Add `use_symbol_keys` parameter to emit string key record
|
545
|
+
https://github.com/fluent/fluentd/pull/3008
|
546
|
+
|
547
|
+
# v1.10
|
548
|
+
|
549
|
+
## Release v1.10.4 - 2020/05/12
|
550
|
+
|
551
|
+
### Enhancement
|
552
|
+
|
553
|
+
* out_http: Support single json array payload
|
554
|
+
https://github.com/fluent/fluentd/pull/2973
|
555
|
+
* Refactoring
|
556
|
+
https://github.com/fluent/fluentd/pull/2988
|
557
|
+
|
558
|
+
### Bug fix
|
559
|
+
|
560
|
+
* supervisor: Call `File.umask(0)` for standalone worker
|
561
|
+
https://github.com/fluent/fluentd/pull/2987
|
562
|
+
* out_forward: Fix ZeroDivisionError issue with `weight 0`
|
563
|
+
https://github.com/fluent/fluentd/pull/2989
|
564
|
+
|
565
|
+
## Release v1.10.3 - 2020/05/01
|
566
|
+
|
567
|
+
### Enhancement
|
568
|
+
|
569
|
+
* record_accessor: Add `set` method
|
570
|
+
https://github.com/fluent/fluentd/pull/2977
|
571
|
+
* config: Ruby DSL format is deprecated
|
572
|
+
https://github.com/fluent/fluentd/pull/2958
|
573
|
+
* Refactor code
|
574
|
+
https://github.com/fluent/fluentd/pull/2961
|
575
|
+
https://github.com/fluent/fluentd/pull/2962
|
576
|
+
https://github.com/fluent/fluentd/pull/2965
|
577
|
+
https://github.com/fluent/fluentd/pull/2966
|
578
|
+
https://github.com/fluent/fluentd/pull/2978
|
579
|
+
|
580
|
+
### Bug fix
|
581
|
+
|
582
|
+
* out_forward: Disable `linger_timeout` setting on Windows
|
583
|
+
https://github.com/fluent/fluentd/pull/2959
|
584
|
+
* out_forward: Fix warning of service discovery manager when fluentd stops
|
585
|
+
https://github.com/fluent/fluentd/pull/2974
|
586
|
+
|
587
|
+
## Release v1.10.2 - 2020/04/15
|
588
|
+
|
589
|
+
### Enhancement
|
590
|
+
|
591
|
+
* out_copy: Add plugin_id to log message
|
592
|
+
https://github.com/fluent/fluentd/pull/2934
|
593
|
+
* socket: Allow cert chains in mutual auth
|
594
|
+
https://github.com/fluent/fluentd/pull/2930
|
595
|
+
* system: Add ignore_repeated_log_interval parameter
|
596
|
+
https://github.com/fluent/fluentd/pull/2937
|
597
|
+
* windows: Allow to launch fluentd from whitespace included path
|
598
|
+
https://github.com/fluent/fluentd/pull/2920
|
599
|
+
* Refactor code
|
600
|
+
https://github.com/fluent/fluentd/pull/2935
|
601
|
+
https://github.com/fluent/fluentd/pull/2936
|
602
|
+
https://github.com/fluent/fluentd/pull/2938
|
603
|
+
https://github.com/fluent/fluentd/pull/2939
|
604
|
+
https://github.com/fluent/fluentd/pull/2946
|
605
|
+
|
606
|
+
### Bug fix
|
607
|
+
|
608
|
+
* in_syslog: Fix octet-counting mode bug
|
609
|
+
https://github.com/fluent/fluentd/pull/2942
|
610
|
+
* out_forward: Create timer for purging obsolete sockets when keepalive_timeout is not set
|
611
|
+
https://github.com/fluent/fluentd/pull/2943
|
612
|
+
* out_forward: Need authentication when sending tcp heartbeat with keepalive
|
613
|
+
https://github.com/fluent/fluentd/pull/2945
|
614
|
+
* command: Fix fluent-debug start failure
|
615
|
+
https://github.com/fluent/fluentd/pull/2948
|
616
|
+
* command: Fix regression of supervisor's worker and `--daemon` combo
|
617
|
+
https://github.com/fluent/fluentd/pull/2950
|
618
|
+
|
619
|
+
## Release v1.10.1 - 2020/04/02
|
620
|
+
|
621
|
+
### Enhancement
|
622
|
+
|
623
|
+
* command: `--daemon` and `--no-supervisor` now work together
|
624
|
+
https://github.com/fluent/fluentd/pull/2912
|
625
|
+
* Refactor code
|
626
|
+
https://github.com/fluent/fluentd/pull/2913
|
627
|
+
|
628
|
+
### Bug fix
|
629
|
+
|
630
|
+
* in_tail: `Fix pos_file_compaction_interval` parameter type
|
631
|
+
https://github.com/fluent/fluentd/pull/2921
|
632
|
+
* in_tail: Fix seek position update after compaction
|
633
|
+
https://github.com/fluent/fluentd/pull/2922
|
634
|
+
* parser_syslog: Fix regression in the `with_priority` and RFC5424 case
|
635
|
+
https://github.com/fluent/fluentd/pull/2923
|
636
|
+
|
637
|
+
### Misc
|
638
|
+
|
639
|
+
* Add document for security audit
|
640
|
+
https://github.com/fluent/fluentd/pull/2911
|
641
|
+
|
642
|
+
## Release v1.10.0 - 2020/03/24
|
643
|
+
|
644
|
+
### New feature
|
645
|
+
|
646
|
+
* sd plugin: Add SRV record plugin
|
647
|
+
https://github.com/fluent/fluentd/pull/2876
|
648
|
+
|
649
|
+
### Enhancement
|
650
|
+
|
651
|
+
* server: Add `cert_verifier` parameter for TLS transport
|
652
|
+
https://github.com/fluent/fluentd/pull/2888
|
653
|
+
* parser_syslog: Support customized time format
|
654
|
+
https://github.com/fluent/fluentd/pull/2886
|
655
|
+
* in_dummy: Delete `suspend` parameter
|
656
|
+
https://github.com/fluent/fluentd/pull/2897
|
657
|
+
* Refactor code
|
658
|
+
https://github.com/fluent/fluentd/pull/2858
|
659
|
+
https://github.com/fluent/fluentd/pull/2862
|
660
|
+
https://github.com/fluent/fluentd/pull/2864
|
661
|
+
https://github.com/fluent/fluentd/pull/2869
|
662
|
+
https://github.com/fluent/fluentd/pull/2870
|
663
|
+
https://github.com/fluent/fluentd/pull/2874
|
664
|
+
https://github.com/fluent/fluentd/pull/2881
|
665
|
+
https://github.com/fluent/fluentd/pull/2885
|
666
|
+
https://github.com/fluent/fluentd/pull/2894
|
667
|
+
https://github.com/fluent/fluentd/pull/2896
|
668
|
+
https://github.com/fluent/fluentd/pull/2898
|
669
|
+
https://github.com/fluent/fluentd/pull/2899
|
670
|
+
https://github.com/fluent/fluentd/pull/2900
|
671
|
+
https://github.com/fluent/fluentd/pull/2901
|
672
|
+
https://github.com/fluent/fluentd/pull/2906
|
673
|
+
|
674
|
+
### Bug fix
|
675
|
+
|
676
|
+
* out_forward: windows: Permit to specify `linger_timeout`
|
677
|
+
https://github.com/fluent/fluentd/pull/2868
|
678
|
+
* parser_syslog: Fix syslog format detection
|
679
|
+
https://github.com/fluent/fluentd/pull/2879
|
680
|
+
* buffer: Fix `available_buffer_space_ratio` calculation
|
681
|
+
https://github.com/fluent/fluentd/pull/2882
|
682
|
+
* tls: Support CRLF based X.509 certificates
|
683
|
+
https://github.com/fluent/fluentd/pull/2890
|
684
|
+
* msgpack_factory mixin: Fix performance penalty for deprecation log
|
685
|
+
https://github.com/fluent/fluentd/pull/2903
|
686
|
+
|
687
|
+
|
688
|
+
# v1.9
|
689
|
+
|
690
|
+
## Release v1.9.3 - 2020/03/05
|
691
|
+
|
692
|
+
### Enhancement
|
693
|
+
|
694
|
+
* in_tail: Emit buffered lines as `unmatched_line` at shutdown phase when `emit_unmatched_lines true`
|
695
|
+
https://github.com/fluent/fluentd/pull/2837
|
696
|
+
* Specify directory mode explicitly
|
697
|
+
https://github.com/fluent/fluentd/pull/2827
|
698
|
+
* server helper: Change SSLError log level to warn in accept
|
699
|
+
https://github.com/fluent/fluentd/pull/2861
|
700
|
+
* Refactor code
|
701
|
+
https://github.com/fluent/fluentd/pull/2829
|
702
|
+
https://github.com/fluent/fluentd/pull/2830
|
703
|
+
https://github.com/fluent/fluentd/pull/2832
|
704
|
+
https://github.com/fluent/fluentd/pull/2836
|
705
|
+
https://github.com/fluent/fluentd/pull/2838
|
706
|
+
https://github.com/fluent/fluentd/pull/2842
|
707
|
+
https://github.com/fluent/fluentd/pull/2843
|
708
|
+
|
709
|
+
### Bug fix
|
710
|
+
|
711
|
+
* buffer: Add seq to metadata that it can be unique
|
712
|
+
https://github.com/fluent/fluentd/pull/2824
|
713
|
+
https://github.com/fluent/fluentd/pull/2853
|
714
|
+
* buffer: Use `Tempfile` as binmode for decompression
|
715
|
+
https://github.com/fluent/fluentd/pull/2847
|
716
|
+
|
717
|
+
### Misc
|
718
|
+
|
719
|
+
* Add `.idea` to git ignore file
|
720
|
+
https://github.com/fluent/fluentd/pull/2834
|
721
|
+
* appveyor: Fix tests
|
722
|
+
https://github.com/fluent/fluentd/pull/2853
|
723
|
+
https://github.com/fluent/fluentd/pull/2855
|
724
|
+
* Update pem for test
|
725
|
+
https://github.com/fluent/fluentd/pull/2839
|
726
|
+
|
727
|
+
## Release v1.9.2 - 2020/02/13
|
728
|
+
|
729
|
+
### Enhancement
|
730
|
+
|
731
|
+
* in_tail: Add `pos_file_compaction_interval` parameter for auto compaction
|
732
|
+
https://github.com/fluent/fluentd/pull/2805
|
733
|
+
* command: Use given encoding when RUBYOPT has `-E`
|
734
|
+
https://github.com/fluent/fluentd/pull/2814
|
735
|
+
|
736
|
+
### Bug fix
|
737
|
+
|
738
|
+
* command: Accept RUBYOPT with two or more options
|
739
|
+
https://github.com/fluent/fluentd/pull/2807
|
740
|
+
* command: Fix infinite loop bug when RUBYOPT is invalid
|
741
|
+
https://github.com/fluent/fluentd/pull/2813
|
742
|
+
* log: serverengine's log should be formatted with the same format of fluentd
|
743
|
+
https://github.com/fluent/fluentd/pull/2812
|
744
|
+
* in_http: Fix `NoMethodError` when `OPTIONS` request doesn't have 'Origin' header
|
745
|
+
https://github.com/fluent/fluentd/pull/2823
|
746
|
+
* parser_syslog: Improved for parsing RFC5424 structured data in `parser_syslog`
|
747
|
+
https://github.com/fluent/fluentd/pull/2816
|
748
|
+
|
749
|
+
## Release v1.9.1 - 2020/01/31
|
750
|
+
|
751
|
+
### Enhancement
|
752
|
+
|
753
|
+
* http_server helper: Support HTTPS
|
754
|
+
https://github.com/fluent/fluentd/pull/2787
|
755
|
+
* in_tail: Add `path_delimiter` to split with any char
|
756
|
+
https://github.com/fluent/fluentd/pull/2796
|
757
|
+
* in_tail: Remove an entry from PositionaFile when it is unwatched
|
758
|
+
https://github.com/fluent/fluentd/pull/2803
|
759
|
+
* out_http: Add warning for `retryable_response_code`
|
760
|
+
https://github.com/fluent/fluentd/pull/2809
|
761
|
+
* parser_syslog: Add multiline RFC5424 support
|
762
|
+
https://github.com/fluent/fluentd/pull/2767
|
763
|
+
* Add TLS module to unify TLS related code
|
764
|
+
https://github.com/fluent/fluentd/pull/2802
|
765
|
+
|
766
|
+
### Bug fix
|
767
|
+
|
768
|
+
* output: Add `EncodingError` to unrecoverable errors
|
769
|
+
https://github.com/fluent/fluentd/pull/2808
|
770
|
+
* tls: Fix TLS version handling in secure mode
|
771
|
+
https://github.com/fluent/fluentd/pull/2802
|
772
|
+
|
773
|
+
## Release v1.9.0 - 2020/01/22
|
774
|
+
|
775
|
+
### New feature
|
776
|
+
|
777
|
+
* New light-weight config reload mechanizm
|
778
|
+
https://github.com/fluent/fluentd/pull/2716
|
779
|
+
* Drop ruby 2.1/2.2/2.3 support
|
780
|
+
https://github.com/fluent/fluentd/pull/2750
|
781
|
+
|
782
|
+
### Enhancement
|
783
|
+
|
784
|
+
* output: Show better message for secondary warning
|
785
|
+
https://github.com/fluent/fluentd/pull/2751
|
786
|
+
* Use `ext_monitor` gem if it is installed. For ruby 2.6 or earlier
|
787
|
+
https://github.com/fluent/fluentd/pull/2670
|
788
|
+
* Support Ruby's Time class in msgpack serde
|
789
|
+
https://github.com/fluent/fluentd/pull/2775
|
790
|
+
* Clean up code/test
|
791
|
+
https://github.com/fluent/fluentd/pull/2753
|
792
|
+
https://github.com/fluent/fluentd/pull/2763
|
793
|
+
https://github.com/fluent/fluentd/pull/2764
|
794
|
+
https://github.com/fluent/fluentd/pull/2780
|
795
|
+
|
796
|
+
### Bug fix
|
797
|
+
|
798
|
+
* buffer: Disable the optimization of Metadata instance comparison on Windows
|
799
|
+
https://github.com/fluent/fluentd/pull/2778
|
800
|
+
* outut/buffer: Fix stage size computation
|
801
|
+
https://github.com/fluent/fluentd/pull/2734
|
802
|
+
* server: Ignore Errno::EHOSTUNREACH in TLS accept to avoid fluentd restart
|
803
|
+
https://github.com/fluent/fluentd/pull/2773
|
804
|
+
* server: Fix IPv6 dual stack mode issue for udp socket
|
805
|
+
https://github.com/fluent/fluentd/pull/2781
|
806
|
+
* config: Support @include/include directive for spaces included path
|
807
|
+
https://github.com/fluent/fluentd/pull/2780
|
808
|
+
|
809
|
+
|
810
|
+
# v1.8
|
811
|
+
|
812
|
+
## Release v1.8.1 - 2019/12/26
|
813
|
+
|
814
|
+
### Enhancement
|
815
|
+
|
816
|
+
* in_tail: Add `path_timezone` parameter to format `path` with the specified timezone
|
817
|
+
https://github.com/fluent/fluentd/pull/2719
|
818
|
+
* out_copy: Add `copy_mode` parameter. `deep_copy` parameter is now deprecated.
|
819
|
+
https://github.com/fluent/fluentd/pull/2747
|
820
|
+
* supervisor: Add deprecated log for `inline_config`
|
821
|
+
https://github.com/fluent/fluentd/pull/2746
|
822
|
+
|
823
|
+
### Bug fixes
|
824
|
+
|
825
|
+
* parser_ltsv: Prevent garbage result by checking `label_delimiter`
|
826
|
+
https://github.com/fluent/fluentd/pull/2748
|
827
|
+
|
828
|
+
## Release v1.8.0 - 2019/12/11
|
829
|
+
|
830
|
+
### New feature
|
831
|
+
|
832
|
+
* Add service discovery plugin and `out_forward` use it
|
833
|
+
https://github.com/fluent/fluentd/pull/2541
|
834
|
+
* config: Add strict mode and support `default`/`nil` value in ruby embedded mode
|
835
|
+
https://github.com/fluent/fluentd/pull/2685
|
836
|
+
|
837
|
+
### Enhancement
|
838
|
+
|
839
|
+
* formatter_csv: Support nested fields
|
840
|
+
https://github.com/fluent/fluentd/pull/2643
|
841
|
+
* record_accessor helper: Make code simple and bit faster
|
842
|
+
https://github.com/fluent/fluentd/pull/2660
|
843
|
+
* Relax tzinfo dependency to accept v1
|
844
|
+
https://github.com/fluent/fluentd/pull/2673
|
845
|
+
* log: Deprecate top-level match for capturing fluentd logs
|
846
|
+
https://github.com/fluent/fluentd/pull/2689
|
847
|
+
* in_monitor_agent: Expose Fluentd verion in REST API
|
848
|
+
https://github.com/fluent/fluentd/pull/2706
|
849
|
+
* time: Accept localtime xor utc
|
850
|
+
https://github.com/fluent/fluentd/pull/2720
|
851
|
+
https://github.com/fluent/fluentd/pull/2731
|
852
|
+
* formatter_stdout: Make time_format configurable in stdout format
|
853
|
+
https://github.com/fluent/fluentd/pull/2721
|
854
|
+
* supervisor: create log directory when it doesn't exists
|
855
|
+
https://github.com/fluent/fluentd/pull/2732
|
856
|
+
* clean up internal classes / methods / code
|
857
|
+
https://github.com/fluent/fluentd/pull/2647
|
858
|
+
https://github.com/fluent/fluentd/pull/2648
|
859
|
+
https://github.com/fluent/fluentd/pull/2653
|
860
|
+
https://github.com/fluent/fluentd/pull/2654
|
861
|
+
https://github.com/fluent/fluentd/pull/2657
|
862
|
+
https://github.com/fluent/fluentd/pull/2667
|
863
|
+
https://github.com/fluent/fluentd/pull/2674
|
864
|
+
https://github.com/fluent/fluentd/pull/2677
|
865
|
+
https://github.com/fluent/fluentd/pull/2680
|
866
|
+
https://github.com/fluent/fluentd/pull/2709
|
867
|
+
https://github.com/fluent/fluentd/pull/2730
|
868
|
+
|
869
|
+
### Bug fixes
|
870
|
+
|
871
|
+
* output: Fix warning printed when chunk key placeholder not replaced
|
872
|
+
https://github.com/fluent/fluentd/pull/2523
|
873
|
+
https://github.com/fluent/fluentd/pull/2733
|
874
|
+
* Fix dry-run mode
|
875
|
+
https://github.com/fluent/fluentd/pull/2651
|
876
|
+
* suppress warning
|
877
|
+
https://github.com/fluent/fluentd/pull/2652
|
878
|
+
* suppress keyword argument warning for ruby2.7
|
879
|
+
https://github.com/fluent/fluentd/pull/2664
|
880
|
+
* RPC: Fix debug log text
|
881
|
+
https://github.com/fluent/fluentd/pull/2666
|
882
|
+
* time: Properly show class names in error message
|
883
|
+
https://github.com/fluent/fluentd/pull/2671
|
884
|
+
* Fix a potential bug that ThreadError may occur on SIGUSR1
|
885
|
+
https://github.com/fluent/fluentd/pull/2678
|
886
|
+
* server helper: Ignore ECONNREFUSED in TLS accept to avoid fluentd restart
|
887
|
+
https://github.com/fluent/fluentd/pull/2695
|
888
|
+
* server helper: Fix IPv6 dual stack mode issue for tcp socket.
|
889
|
+
https://github.com/fluent/fluentd/pull/2697
|
890
|
+
* supervisor: Fix inline config handling
|
891
|
+
https://github.com/fluent/fluentd/pull/2708
|
892
|
+
* Fix typo
|
893
|
+
https://github.com/fluent/fluentd/pull/2710
|
894
|
+
https://github.com/fluent/fluentd/pull/2714
|
895
|
+
|
896
|
+
# v1.7
|
897
|
+
|
898
|
+
## Release v1.7.4 - 2019/10/24
|
899
|
+
|
900
|
+
### Enhancement
|
901
|
+
|
902
|
+
* in_http: Add `use_204_response` parameter to return proper 204 response instead of 200.
|
903
|
+
fluentd v2 will change this parameter to `true`.
|
904
|
+
https://github.com/fluent/fluentd/pull/2640
|
905
|
+
|
906
|
+
### Bug fixes
|
907
|
+
|
908
|
+
* child_process helper: fix stderr blocking for discard case
|
909
|
+
https://github.com/fluent/fluentd/pull/2649
|
910
|
+
* log: Fix log rotation handling on Windows
|
911
|
+
https://github.com/fluent/fluentd/pull/2663
|
912
|
+
|
913
|
+
## Release v1.7.3 - 2019/10/01
|
914
|
+
|
915
|
+
### Enhancement
|
916
|
+
|
917
|
+
* in_syslog: Replace priority_key with severity_key
|
918
|
+
https://github.com/fluent/fluentd/pull/2636
|
919
|
+
|
920
|
+
### Bug fixes
|
921
|
+
|
922
|
+
* out_forward: Fix nil error after purge obsoleted sockets in socket cache
|
923
|
+
https://github.com/fluent/fluentd/pull/2635
|
924
|
+
* fix typo in ChangeLog
|
925
|
+
https://github.com/fluent/fluentd/pull/2633
|
926
|
+
|
927
|
+
## Release v1.7.2 - 2019/09/19
|
928
|
+
|
929
|
+
### Enhancement
|
930
|
+
|
931
|
+
* in_tcp: Add security/client to restrict access
|
932
|
+
https://github.com/fluent/fluentd/pull/2622
|
933
|
+
|
934
|
+
### Bug fixes
|
935
|
+
|
936
|
+
* buf_file/buf_file_single: fix to handle compress data during restart
|
937
|
+
https://github.com/fluent/fluentd/pull/2620
|
938
|
+
* plugin: Use `__send__` to avoid conflict with user defined `send`
|
939
|
+
https://github.com/fluent/fluentd/pull/2614
|
940
|
+
* buffer: reject invalid timekey at configure phase
|
941
|
+
https://github.com/fluent/fluentd/pull/2615
|
942
|
+
|
943
|
+
|
944
|
+
## Release v1.7.1 - 2019/09/08
|
945
|
+
|
946
|
+
### Enhancement
|
947
|
+
|
948
|
+
* socket helper/out_forward: Support Windows certstore to load certificates
|
949
|
+
https://github.com/fluent/fluentd/pull/2601
|
950
|
+
* parser_syslog: Add faster parser for rfc3164 message
|
951
|
+
https://github.com/fluent/fluentd/pull/2599
|
952
|
+
|
953
|
+
### Bug fixes
|
954
|
+
|
955
|
+
* buf_file/buf_file_single: fix to ignore placeholder based path.
|
956
|
+
https://github.com/fluent/fluentd/pull/2594
|
957
|
+
* server helper: Ignore ETIMEDOUT error in SSL_accept
|
958
|
+
https://github.com/fluent/fluentd/pull/2595
|
959
|
+
* buf_file: ensure to remove metadata after buffer creation failure
|
960
|
+
https://github.com/fluent/fluentd/pull/2598
|
961
|
+
* buf_file_single: fix duplicated path setting check
|
962
|
+
https://github.com/fluent/fluentd/pull/2600
|
963
|
+
* fix msgpack-ruby dependency to use recent feature
|
964
|
+
https://github.com/fluent/fluentd/pull/2606
|
965
|
+
|
966
|
+
|
967
|
+
## Release v1.7.0 - 2019/08/20
|
968
|
+
|
969
|
+
### New feature
|
970
|
+
|
971
|
+
* buffer: Add file_single buffer plugin
|
972
|
+
https://github.com/fluent/fluentd/pull/2579
|
973
|
+
* output: Add http output plugin
|
974
|
+
https://github.com/fluent/fluentd/pull/2488
|
975
|
+
|
976
|
+
### Enhancement
|
977
|
+
|
978
|
+
* buffer: Improve the performance of buffer routine
|
979
|
+
https://github.com/fluent/fluentd/pull/2560
|
980
|
+
https://github.com/fluent/fluentd/pull/2563
|
981
|
+
https://github.com/fluent/fluentd/pull/2564
|
982
|
+
* output: Use Mutex instead of Monitor
|
983
|
+
https://github.com/fluent/fluentd/pull/2561
|
984
|
+
* event: Add `OneEventStrea#empty?` method
|
985
|
+
https://github.com/fluent/fluentd/pull/2565
|
986
|
+
* thread: Set thread name for ruby 2.3 or later
|
987
|
+
https://github.com/fluent/fluentd/pull/2574
|
988
|
+
* core: Cache msgpack packer/unpacker to avoid the object allocation
|
989
|
+
https://github.com/fluent/fluentd/pull/2559
|
990
|
+
* time: Use faster way to get sec and nsec
|
991
|
+
https://github.com/fluent/fluentd/pull/2557
|
992
|
+
* buf_file: Reduce IO flush by removing `IO#truncate`
|
993
|
+
https://github.com/fluent/fluentd/pull/2551
|
994
|
+
* in_tcp: Improve the performance for multiple event case
|
995
|
+
https://github.com/fluent/fluentd/pull/2567
|
996
|
+
* in_syslog: support `source_hostname_key` and `source_address_key` for unmatched event
|
997
|
+
https://github.com/fluent/fluentd/pull/2553
|
998
|
+
* formatter_csv: Improve the format performance.
|
999
|
+
https://github.com/fluent/fluentd/pull/2529
|
1000
|
+
* parser_csv: Add fast parser for typical cases
|
1001
|
+
https://github.com/fluent/fluentd/pull/2535
|
1002
|
+
* out_forward: Refactor code
|
1003
|
+
https://github.com/fluent/fluentd/pull/2516
|
1004
|
+
https://github.com/fluent/fluentd/pull/2532
|
1005
|
+
|
1006
|
+
### Bug fixes
|
1007
|
+
|
1008
|
+
* output: fix data lost on decompression
|
1009
|
+
https://github.com/fluent/fluentd/pull/2547
|
1010
|
+
* out_exec_filter: fix non-ascii encoding issue
|
1011
|
+
https://github.com/fluent/fluentd/pull/2539
|
1012
|
+
* in_tail: Don't call parser's configure twice
|
1013
|
+
https://github.com/fluent/fluentd/pull/2569
|
1014
|
+
* Fix unused message handling for <section> parameters
|
1015
|
+
https://github.com/fluent/fluentd/pull/2578
|
1016
|
+
* Fix comment/message typos
|
1017
|
+
https://github.com/fluent/fluentd/pull/2549
|
1018
|
+
https://github.com/fluent/fluentd/pull/2554
|
1019
|
+
https://github.com/fluent/fluentd/pull/2556
|
1020
|
+
https://github.com/fluent/fluentd/pull/2566
|
1021
|
+
https://github.com/fluent/fluentd/pull/2573
|
1022
|
+
https://github.com/fluent/fluentd/pull/2576
|
1023
|
+
https://github.com/fluent/fluentd/pull/2583
|
1024
|
+
|
1025
|
+
# v1.6
|
1026
|
+
|
1027
|
+
## Release v1.6.3 - 2019/07/29
|
1028
|
+
|
1029
|
+
### Enhancement
|
1030
|
+
|
1031
|
+
* in_syslog: Add `emit_unmatched_lines` parameter
|
1032
|
+
https://github.com/fluent/fluentd/pull/2499
|
1033
|
+
* buf_file: Add `path_suffix` parameter
|
1034
|
+
https://github.com/fluent/fluentd/pull/2524
|
1035
|
+
* in_tail: Improve the performance of split lines
|
1036
|
+
https://github.com/fluent/fluentd/pull/2527
|
1037
|
+
|
1038
|
+
### Bug fixes
|
1039
|
+
|
1040
|
+
* http_server: Fix re-define render_json method
|
1041
|
+
https://github.com/fluent/fluentd/pull/2517
|
1042
|
+
|
1043
|
+
## Release v1.6.2 - 2019/07/11
|
1044
|
+
|
1045
|
+
### Bug fixes
|
1046
|
+
|
1047
|
+
* http_server helper: Add title argument to support multiple servers
|
1048
|
+
https://github.com/fluent/fluentd/pull/2493
|
1049
|
+
|
1050
|
+
## Release v1.6.1 - 2019/07/10
|
1051
|
+
|
1052
|
+
### Enhancement
|
1053
|
+
|
1054
|
+
* socket/cert: Support all private keys OpenSSL supports, not only RSA.
|
1055
|
+
https://github.com/fluent/fluentd/pull/2487
|
1056
|
+
* output/buffer: Improve statistics method performance
|
1057
|
+
https://github.com/fluent/fluentd/pull/2491
|
1058
|
+
|
1059
|
+
### Bug fixes
|
1060
|
+
|
1061
|
+
* plugin_config_formatter: update new doc URL
|
1062
|
+
https://github.com/fluent/fluentd/pull/2481
|
1063
|
+
* out_forward: Avoid zero division error when there are no available nodes
|
1064
|
+
https://github.com/fluent/fluentd/pull/2482
|
1065
|
+
|
1066
|
+
## Release v1.6.0 - 2019/07/01
|
1067
|
+
|
1068
|
+
### New feature
|
1069
|
+
|
1070
|
+
* plugin: Add http_server helper and in_monitor_agent use it
|
1071
|
+
https://github.com/fluent/fluentd/pull/2447
|
1072
|
+
|
1073
|
+
### Enhancement
|
1074
|
+
|
1075
|
+
* in_monitor_agent: Add more metrics for buffer/output
|
1076
|
+
https://github.com/fluent/fluentd/pull/2450
|
1077
|
+
* time/plugin: Add `EventTime#to_time` method for fast conversion
|
1078
|
+
https://github.com/fluent/fluentd/pull/2469
|
1079
|
+
* socket helper/out_forward: Add connect_timeout parameter
|
1080
|
+
https://github.com/fluent/fluentd/pull/2467
|
1081
|
+
* command: Add `--conf-encoding` option
|
1082
|
+
https://github.com/fluent/fluentd/pull/2453
|
1083
|
+
* parser_none: Small performance optimization
|
1084
|
+
https://github.com/fluent/fluentd/pull/2455
|
1085
|
+
|
1086
|
+
### Bug fixes
|
1087
|
+
|
1088
|
+
* cert: Fix cert match pattern
|
1089
|
+
https://github.com/fluent/fluentd/pull/2466
|
1090
|
+
* output: Fix forget to increment rollback count
|
1091
|
+
https://github.com/fluent/fluentd/pull/2462
|
1092
|
+
|
1093
|
+
# v1.5
|
1094
|
+
|
1095
|
+
## Release v1.5.2 - 2019/06/13
|
1096
|
+
|
1097
|
+
### Bug fixes
|
1098
|
+
|
1099
|
+
* out_forward: Fix duplicated handshake bug in keepalive
|
1100
|
+
https://github.com/fluent/fluentd/pull/2456
|
1101
|
+
|
1102
|
+
## Release v1.5.1 - 2019/06/05
|
1103
|
+
|
1104
|
+
### Enhancement
|
1105
|
+
|
1106
|
+
* in_tail: Increase read block size to reduce IO call
|
1107
|
+
https://github.com/fluent/fluentd/pull/2418
|
1108
|
+
* in_monitor_agent: Refactor code
|
1109
|
+
https://github.com/fluent/fluentd/pull/2422
|
1110
|
+
|
1111
|
+
### Bug fixes
|
1112
|
+
|
1113
|
+
* out_forward: Fix socket handling of keepalive
|
1114
|
+
https://github.com/fluent/fluentd/pull/2434
|
1115
|
+
* parser: Fix the use of name based timezone
|
1116
|
+
https://github.com/fluent/fluentd/pull/2421
|
1117
|
+
* in_monitor_agent: Fix debug parameter handling
|
1118
|
+
https://github.com/fluent/fluentd/pull/2423
|
1119
|
+
* command: Fix error handling of log rotation age option
|
1120
|
+
https://github.com/fluent/fluentd/pull/2427
|
1121
|
+
* command: Fix ERB warning for ruby 2.6 or later
|
1122
|
+
https://github.com/fluent/fluentd/pull/2430
|
1123
|
+
|
1124
|
+
## Release v1.5.0 - 2019/05/18
|
1125
|
+
|
1126
|
+
### New feature
|
1127
|
+
|
1128
|
+
* out_forward: Support keepalive feature
|
1129
|
+
https://github.com/fluent/fluentd/pull/2393
|
1130
|
+
* in_http: Support TLS via server helper
|
1131
|
+
https://github.com/fluent/fluentd/pull/2395
|
1132
|
+
* in_syslog: Support TLS via server helper
|
1133
|
+
https://github.com/fluent/fluentd/pull/2399
|
1134
|
+
|
1135
|
+
### Enhancement
|
1136
|
+
|
1137
|
+
* in_syslog: Add delimiter parameter
|
1138
|
+
https://github.com/fluent/fluentd/pull/2378
|
1139
|
+
* in_forward: Add tag/add_tag_prefix parameters
|
1140
|
+
https://github.com/fluent/fluentd/pull/2396
|
1141
|
+
* parser_json: Add stream_buffer_size parameter for yajl
|
1142
|
+
https://github.com/fluent/fluentd/pull/2381
|
1143
|
+
* command: Add deprecated message to show-plugin-config option
|
1144
|
+
https://github.com/fluent/fluentd/pull/2401
|
1145
|
+
* storage_local: Ignore empty file. Call sync after write for XFS.
|
1146
|
+
https://github.com/fluent/fluentd/pull/2409
|
1147
|
+
|
1148
|
+
### Bug fixes
|
1149
|
+
|
1150
|
+
* out_forward: Don't use SO_LINGER on SSL/TLS WinSock
|
1151
|
+
https://github.com/fluent/fluentd/pull/2398
|
1152
|
+
* server helper: Fix recursive lock issue in TLSServer
|
1153
|
+
https://github.com/fluent/fluentd/pull/2341
|
1154
|
+
* Fix typo
|
1155
|
+
https://github.com/fluent/fluentd/pull/2369
|
1156
|
+
|
1157
|
+
# v1.4
|
1158
|
+
|
1159
|
+
## Release v1.4.2 - 2019/04/02
|
1160
|
+
|
1161
|
+
### Enhancements
|
1162
|
+
|
1163
|
+
* in_http: subdomain support in CORS domain
|
1164
|
+
https://github.com/fluent/fluentd/pull/2337
|
1165
|
+
* in_monitor_agent: Expose current timekey list as a buffer metrics
|
1166
|
+
https://github.com/fluent/fluentd/pull/2343
|
1167
|
+
* in_tcp/in_udp: Add source_address_key parameter
|
1168
|
+
https://github.com/fluent/fluentd/pull/2347
|
1169
|
+
* in_forward: Add send_keepalive_packet parameter to check the remote connection is available or not
|
1170
|
+
https://github.com/fluent/fluentd/pull/2352
|
1171
|
+
|
1172
|
+
### Bug fixes
|
1173
|
+
|
1174
|
+
* out_exec_filter: Fix typo of child_respawn description
|
1175
|
+
https://github.com/fluent/fluentd/pull/2341
|
1176
|
+
* in_tail: Create parent directories for symlink
|
1177
|
+
https://github.com/fluent/fluentd/pull/2353
|
1178
|
+
* in_tail: Fix encoding duplication check for non-specified case
|
1179
|
+
https://github.com/fluent/fluentd/pull/2361
|
1180
|
+
* log: Fix time format handling of plugin logger when log format is JSON
|
1181
|
+
https://github.com/fluent/fluentd/pull/2356
|
1182
|
+
|
1183
|
+
## Release v1.4.1 - 2019/03/18
|
1184
|
+
|
1185
|
+
### Enhancements
|
1186
|
+
|
1187
|
+
* system: Add worker_id to process_name when workers is larger than 1
|
1188
|
+
https://github.com/fluent/fluentd/pull/2321
|
1189
|
+
* parser_regexp: Check named captures. When no named captures, configuration error is raised
|
1190
|
+
https://github.com/fluent/fluentd/pull/2331
|
1191
|
+
|
1192
|
+
### Bug fixes
|
1193
|
+
|
1194
|
+
* out_forward: Make tls_client_private_key_passphrase secret
|
1195
|
+
https://github.com/fluent/fluentd/pull/2324
|
1196
|
+
* in_syslog: Check message length when read from buffer in octet counting
|
1197
|
+
https://github.com/fluent/fluentd/pull/2323
|
1198
|
+
|
1199
|
+
## Release v1.4.0 - 2019/02/24
|
1200
|
+
|
1201
|
+
### New features
|
1202
|
+
|
1203
|
+
* multiprocess: Support <worker N-M> syntax
|
1204
|
+
https://github.com/fluent/fluentd/pull/2292
|
1205
|
+
* output: Work <secondary> and retry_forever together
|
1206
|
+
https://github.com/fluent/fluentd/pull/2276
|
1207
|
+
* out_file: Support placeholders in symlink_path
|
1208
|
+
https://github.com/fluent/fluentd/pull/2254
|
1209
|
+
|
1210
|
+
### Enhancements
|
1211
|
+
|
1212
|
+
* output: Add MessagePack unpacker error to unrecoverable error list
|
1213
|
+
https://github.com/fluent/fluentd/pull/2301
|
1214
|
+
* output: Reduce flush delay when large timekey and small timekey_wait are specified
|
1215
|
+
https://github.com/fluent/fluentd/pull/2291
|
1216
|
+
* config: Support embedded ruby code in section argument.
|
1217
|
+
https://github.com/fluent/fluentd/pull/2295
|
1218
|
+
* in_tail: Improve encoding parameter handling
|
1219
|
+
https://github.com/fluent/fluentd/pull/2305
|
1220
|
+
* in_tcp/in_udp: Add <parse> section check
|
1221
|
+
https://github.com/fluent/fluentd/pull/2267
|
1222
|
+
|
1223
|
+
### Bug fixes
|
1224
|
+
|
1225
|
+
* server: Ignore IOError and related errors in UDP
|
1226
|
+
https://github.com/fluent/fluentd/pull/2310
|
1227
|
+
* server: Ignore EPIPE in TLS accept to avoid fluentd restart
|
1228
|
+
https://github.com/fluent/fluentd/pull/2253
|
1229
|
+
|
1230
|
+
# v1.3
|
1231
|
+
|
1232
|
+
## Release v1.3.3 - 2019/01/06
|
1233
|
+
|
1234
|
+
### Enhancements
|
1235
|
+
|
1236
|
+
* parser_syslog: Use String#squeeze for performance improvement
|
1237
|
+
https://github.com/fluent/fluentd/pull/2239
|
1238
|
+
* parser_syslog: Support RFC5424 timestamp without subseconds
|
1239
|
+
https://github.com/fluent/fluentd/pull/2240
|
1240
|
+
|
1241
|
+
### Bug fixes
|
1242
|
+
|
1243
|
+
* server: Ignore ECONNRESET in TLS accept to avoid fluentd restart
|
1244
|
+
https://github.com/fluent/fluentd/pull/2243
|
1245
|
+
* log: Fix plugin logger ignores fluentd log event setting
|
1246
|
+
https://github.com/fluent/fluentd/pull/2252
|
1247
|
+
|
1248
|
+
## Release v1.3.2 - 2018/12/10
|
1249
|
+
|
1250
|
+
### Enhancements
|
1251
|
+
|
1252
|
+
* out_forward: Support mutual TLS
|
1253
|
+
https://github.com/fluent/fluentd/pull/2187
|
1254
|
+
* out_file: Create `pos_file` directory if it doesn't exist
|
1255
|
+
https://github.com/fluent/fluentd/pull/2223
|
1256
|
+
|
1257
|
+
### Bug fixes
|
1258
|
+
|
1259
|
+
* output: Fix logs during retry
|
1260
|
+
https://github.com/fluent/fluentd/pull/2203
|
1261
|
+
|
1262
|
+
## Release v1.3.1 - 2018/11/27
|
1263
|
+
|
1264
|
+
### Enhancements
|
1265
|
+
|
1266
|
+
* out_forward: Separate parameter names for certificate
|
1267
|
+
https://github.com/fluent/fluentd/pull/2181
|
1268
|
+
https://github.com/fluent/fluentd/pull/2190
|
1269
|
+
* out_forward: Add `verify_connection_at_startup` parameter to check connection setting at startup phase
|
1270
|
+
https://github.com/fluent/fluentd/pull/2184
|
1271
|
+
* config: Check right slash position in regexp type
|
1272
|
+
https://github.com/fluent/fluentd/pull/2176
|
1273
|
+
* parser_nginx: Support multiple IPs in `http_x_forwarded_for` field
|
1274
|
+
https://github.com/fluent/fluentd/pull/2171
|
1275
|
+
|
1276
|
+
### Bug fixes
|
1277
|
+
|
1278
|
+
* fluent-cat: Fix retry limit handling
|
1279
|
+
https://github.com/fluent/fluentd/pull/2193
|
1280
|
+
* record_accessor helper: Delete top level field with bracket style
|
1281
|
+
https://github.com/fluent/fluentd/pull/2192
|
1282
|
+
* filter_record_transformer: Keep `class` methond to avoid undefined method error
|
1283
|
+
https://github.com/fluent/fluentd/pull/2186
|
1284
|
+
|
1285
|
+
## Release v1.3.0 - 2018/11/10
|
1286
|
+
|
1287
|
+
### New features
|
1288
|
+
|
1289
|
+
* output: Change thread execution control
|
1290
|
+
https://github.com/fluent/fluentd/pull/2170
|
1291
|
+
* in_syslog: Support octet counting frame
|
1292
|
+
https://github.com/fluent/fluentd/pull/2147
|
1293
|
+
* Use `flush_thread_count` value for `queued_chunks_limit_size` when `queued_chunks_limit_size` is not specified
|
1294
|
+
https://github.com/fluent/fluentd/pull/2173
|
1295
|
+
|
1296
|
+
### Enhancements
|
1297
|
+
|
1298
|
+
* output: Show backtrace for unrecoverable errors
|
1299
|
+
https://github.com/fluent/fluentd/pull/2149
|
1300
|
+
* in_http: Implement support for CORS preflight requests
|
1301
|
+
https://github.com/fluent/fluentd/pull/2144
|
1302
|
+
|
1303
|
+
### Bug fixes
|
1304
|
+
|
1305
|
+
* server: Fix deadlock between on_writable and close in sockets
|
1306
|
+
https://github.com/fluent/fluentd/pull/2165
|
1307
|
+
* output: show correct error when wrong plugin is specified for secondary
|
1308
|
+
https://github.com/fluent/fluentd/pull/2169
|
1309
|
+
|
1310
|
+
# v1.2
|
1311
|
+
|
1312
|
+
## Release v1.2.6 - 2018/10/03
|
1313
|
+
|
1314
|
+
### Enhancements
|
1315
|
+
|
1316
|
+
* output: Add `disable_chunk_backup` for ignore broken chunks.
|
1317
|
+
https://github.com/fluent/fluentd/pull/2117
|
1318
|
+
* parser_syslog: Improve regexp for RFC5424
|
1319
|
+
https://github.com/fluent/fluentd/pull/2141
|
1320
|
+
* in_http: Allow specifying the wildcard '*' as the CORS domain
|
1321
|
+
https://github.com/fluent/fluentd/pull/2139
|
1322
|
+
|
1323
|
+
### Bug fixes
|
1324
|
+
|
1325
|
+
* in_tail: Prevent thread switching in the interval between seek and read/write operations to pos_file
|
1326
|
+
https://github.com/fluent/fluentd/pull/2118
|
1327
|
+
* parser: Handle LoadError properly for oj
|
1328
|
+
https://github.com/fluent/fluentd/pull/2140
|
1329
|
+
|
1330
|
+
## Release v1.2.5 - 2018/08/22
|
1331
|
+
|
1332
|
+
### Bug fixes
|
1333
|
+
|
1334
|
+
* in_tail: Fix resource leak by file rotation
|
1335
|
+
https://github.com/fluent/fluentd/pull/2105
|
1336
|
+
* fix typos
|
1337
|
+
|
1338
|
+
## Release v1.2.4 - 2018/08/01
|
1339
|
+
|
1340
|
+
### Bug fixes
|
1341
|
+
|
1342
|
+
* output: Consider timezone when calculate timekey
|
1343
|
+
https://github.com/fluent/fluentd/pull/2054
|
1344
|
+
* output: Fix bug in suppress_emit_error_log_interval
|
1345
|
+
https://github.com/fluent/fluentd/pull/2069
|
1346
|
+
* server-helper: Fix connection leak by close timing issue.
|
1347
|
+
https://github.com/fluent/fluentd/pull/2087
|
1348
|
+
|
1349
|
+
## Release v1.2.3 - 2018/07/10
|
1350
|
+
|
1351
|
+
### Enhancements
|
1352
|
+
|
1353
|
+
* in_http: Consider `<parse>` parameters in batch mode
|
1354
|
+
https://github.com/fluent/fluentd/pull/2055
|
1355
|
+
* in_http: Support gzip payload
|
1356
|
+
https://github.com/fluent/fluentd/pull/2060
|
1357
|
+
* output: Improve compress performance
|
1358
|
+
https://github.com/fluent/fluentd/pull/2031
|
1359
|
+
* in_monitor_agent: Add missing descriptions for configurable options
|
1360
|
+
https://github.com/fluent/fluentd/pull/2037
|
1361
|
+
* parser_syslog: update regex of pid field for conformance to RFC5424 spec
|
1362
|
+
https://github.com/fluent/fluentd/pull/2051
|
1363
|
+
|
1364
|
+
### Bug fixes
|
1365
|
+
|
1366
|
+
* in_tail: Fix to rescue Errno::ENOENT for File.mtime()
|
1367
|
+
https://github.com/fluent/fluentd/pull/2063
|
1368
|
+
* fluent-plugin-generate: Fix Parser plugin template
|
1369
|
+
https://github.com/fluent/fluentd/pull/2026
|
1370
|
+
* fluent-plugin-config-format: Fix NoMethodError for some plugins
|
1371
|
+
https://github.com/fluent/fluentd/pull/2023
|
1372
|
+
* config: Don't warn message for reserved parameters in DSL
|
1373
|
+
https://github.com/fluent/fluentd/pull/2034
|
1374
|
+
|
1375
|
+
## Release v1.2.2 - 2018/06/12
|
1376
|
+
|
1377
|
+
### Enhancements
|
1378
|
+
|
1379
|
+
* filter_parser: Add remove_key_name_field parameter
|
1380
|
+
https://github.com/fluent/fluentd/pull/2012
|
1381
|
+
* fluent-plugin-config-format: Dump config_argument
|
1382
|
+
https://github.com/fluent/fluentd/pull/2003
|
1383
|
+
|
1384
|
+
### Bug fixes
|
1385
|
+
|
1386
|
+
* in_tail: Change pos file entry handling to avoid read conflict for other plugins
|
1387
|
+
https://github.com/fluent/fluentd/pull/1963
|
1388
|
+
* buffer: Wait for all chunks being purged before deleting @queued_num items
|
1389
|
+
https://github.com/fluent/fluentd/pull/2016
|
1390
|
+
|
1391
|
+
## Release v1.2.1 - 2018/05/23
|
1392
|
+
|
1393
|
+
### Enhancements
|
1394
|
+
|
1395
|
+
* Counter: Add wait API to client
|
1396
|
+
https://github.com/fluent/fluentd/pull/1997
|
1397
|
+
|
1398
|
+
### Bug fixes
|
1399
|
+
|
1400
|
+
* in_tcp/in_udp: Fix source_hostname_key to set hostname correctly
|
1401
|
+
https://github.com/fluent/fluentd/pull/1976
|
1402
|
+
* in_monitor_agent: Fix buffer_total_queued_size calculation
|
1403
|
+
https://github.com/fluent/fluentd/pull/1990
|
1404
|
+
* out_file: Temporal fix for broken gzipped files with gzip and append
|
1405
|
+
https://github.com/fluent/fluentd/pull/1995
|
1406
|
+
* test: Fix unstable backup test
|
1407
|
+
https://github.com/fluent/fluentd/pull/1979
|
1408
|
+
* gemspec: Remove deprecated has_rdoc
|
1409
|
+
|
1410
|
+
## Release v1.2.0 - 2018/04/30
|
1411
|
+
|
1412
|
+
### New Features
|
1413
|
+
|
1414
|
+
* New Counter API
|
1415
|
+
https://github.com/fluent/fluentd/pull/1857
|
1416
|
+
* output: Backup for broken chunks
|
1417
|
+
https://github.com/fluent/fluentd/pull/1952
|
1418
|
+
* filter_grep: Support for `<and>` and `<or>` sections
|
1419
|
+
https://github.com/fluent/fluentd/pull/1897
|
1420
|
+
* config: Support `regexp` type in configuration parameter
|
1421
|
+
https://github.com/fluent/fluentd/pull/1927
|
1422
|
+
|
1423
|
+
### Enhancements
|
1424
|
+
|
1425
|
+
* parser_nginx: Support optional `http-x-forwarded-for` field
|
1426
|
+
https://github.com/fluent/fluentd/pull/1932
|
1427
|
+
* filter_grep: Improve the performance
|
1428
|
+
https://github.com/fluent/fluentd/pull/1940
|
1429
|
+
|
1430
|
+
### Bug fixes
|
1431
|
+
|
1432
|
+
* log: Fix unexpected implementation bug when log rotation setting is applied
|
1433
|
+
https://github.com/fluent/fluentd/pull/1957
|
1434
|
+
* server helper: Close invalid socket when ssl error happens on reading
|
1435
|
+
https://github.com/fluent/fluentd/pull/1942
|
1436
|
+
* output: Buffer chunk's unique id should be formatted as hex in the log
|
1437
|
+
|
1438
|
+
# v1.1
|
1439
|
+
|
1440
|
+
## Release v1.1.3 - 2018/04/03
|
1441
|
+
|
1442
|
+
### Enhancements
|
1443
|
+
|
1444
|
+
* output: Support negative index for tag placeholders
|
1445
|
+
https://github.com/fluent/fluentd/pull/1908
|
1446
|
+
* buffer: Add queued_chunks_limit_size to control the number of queued chunks
|
1447
|
+
https://github.com/fluent/fluentd/pull/1916
|
1448
|
+
* time: Make Fluent::EventTime human readable for inspect
|
1449
|
+
https://github.com/fluent/fluentd/pull/1915
|
1450
|
+
|
1451
|
+
### Bug fixes
|
1452
|
+
|
1453
|
+
* output: Delete empty queued_num field after purging chunks
|
1454
|
+
https://github.com/fluent/fluentd/pull/1919
|
1455
|
+
* fluent-debug: Fix usage message of fluent-debug command
|
1456
|
+
https://github.com/fluent/fluentd/pull/1920
|
1457
|
+
* out_forward: The node should be disabled when TLS socket for ack returns an error
|
1458
|
+
https://github.com/fluent/fluentd/pull/1925
|
1459
|
+
|
1460
|
+
## Release v1.1.2 - 2018/03/18
|
1461
|
+
|
1462
|
+
### Enhancements
|
1463
|
+
|
1464
|
+
* filter_grep: Support pattern starts with character classes with //
|
1465
|
+
https://github.com/fluent/fluentd/pull/1887
|
1466
|
+
|
1467
|
+
### Bug fixes
|
1468
|
+
|
1469
|
+
* in_tail: Handle records in the correct order on file rotation
|
1470
|
+
https://github.com/fluent/fluentd/pull/1880
|
1471
|
+
* out_forward: Fix race condition with `<security>` on multi thread environment
|
1472
|
+
https://github.com/fluent/fluentd/pull/1893
|
1473
|
+
* output: Prevent flushing threads consume too much CPU when retry happens
|
1474
|
+
https://github.com/fluent/fluentd/pull/1901
|
1475
|
+
* config: Fix boolean param handling for comment without value
|
1476
|
+
https://github.com/fluent/fluentd/pull/1883
|
1477
|
+
* test: Fix random test failures in test/plugin/test_out_forward.rb
|
1478
|
+
https://github.com/fluent/fluentd/pull/1881
|
1479
|
+
https://github.com/fluent/fluentd/pull/1890
|
1480
|
+
* command: Fix typo in binlog_reader
|
1481
|
+
https://github.com/fluent/fluentd/pull/1898
|
1482
|
+
|
1483
|
+
## Release v1.1.1 - 2018/03/05
|
1484
|
+
|
1485
|
+
### Enhancements
|
1486
|
+
|
1487
|
+
* in_debug_agent: Support multi worker environment
|
1488
|
+
https://github.com/fluent/fluentd/pull/1869
|
1489
|
+
* in_forward: Improve SSL setup to support mutual TLS
|
1490
|
+
https://github.com/fluent/fluentd/pull/1861
|
1491
|
+
* buf_file: Skip and delete broken file chunks to avoid unsuccessful retry in resume
|
1492
|
+
https://github.com/fluent/fluentd/pull/1874
|
1493
|
+
* command: Show fluentd version for debug purpose
|
1494
|
+
https://github.com/fluent/fluentd/pull/1839
|
1495
|
+
|
1496
|
+
### Bug fixes
|
1497
|
+
|
1498
|
+
* in_forward: Do not close connection until write is complete on failed auth PONG
|
1499
|
+
https://github.com/fluent/fluentd/pull/1835
|
1500
|
+
* in_tail: Fix IO event race condition during shutdown
|
1501
|
+
https://github.com/fluent/fluentd/pull/1876
|
1502
|
+
* in_http: Emit event time instead of raw time value in batch
|
1503
|
+
https://github.com/fluent/fluentd/pull/1850
|
1504
|
+
* parser_json: Add EncodingError to rescue list for oj 3.x.
|
1505
|
+
https://github.com/fluent/fluentd/pull/1875
|
1506
|
+
* config: Fix config_param for string type with frozen string
|
1507
|
+
https://github.com/fluent/fluentd/pull/1838
|
1508
|
+
* timer: Fix a bug to leak non-repeating timer watchers
|
1509
|
+
https://github.com/fluent/fluentd/pull/1864
|
1510
|
+
|
1511
|
+
## Release v1.1.0 - 2018/01/17
|
1512
|
+
|
1513
|
+
### New features / Enhancements
|
1514
|
+
|
1515
|
+
* config: Add hostname and worker_id short-cut
|
1516
|
+
https://github.com/fluent/fluentd/pull/1814
|
1517
|
+
* parser_ltsv: Add delimiter_pattern parameter
|
1518
|
+
https://github.com/fluent/fluentd/pull/1802
|
1519
|
+
* record_accessor helper: Support nested field deletion
|
1520
|
+
https://github.com/fluent/fluentd/pull/1800
|
1521
|
+
* record_accessor helper: Expose internal instance `@keys` variable
|
1522
|
+
https://github.com/fluent/fluentd/pull/1808
|
1523
|
+
* log: Improve Log#on_xxx API performance
|
1524
|
+
https://github.com/fluent/fluentd/pull/1809
|
1525
|
+
* time: Improve time formatting performance
|
1526
|
+
https://github.com/fluent/fluentd/pull/1796
|
1527
|
+
* command: Port certificates generating command from secure-forward
|
1528
|
+
https://github.com/fluent/fluentd/pull/1818
|
1529
|
+
|
1530
|
+
### Bug fixes
|
1531
|
+
|
1532
|
+
* server helper: Fix TCP + TLS degradation
|
1533
|
+
https://github.com/fluent/fluentd/pull/1805
|
1534
|
+
* time: Fix the method for TimeFormatter#call
|
1535
|
+
https://github.com/fluent/fluentd/pull/1813
|
1536
|
+
|
1537
|
+
# v1.0
|
1538
|
+
|
1539
|
+
## Release v1.0.2 - 2017/12/17
|
1540
|
+
|
1541
|
+
### New features / Enhancements
|
1542
|
+
|
1543
|
+
* Use dig_rb instead of ruby_dig to support dig method in more objects
|
1544
|
+
https://github.com/fluent/fluentd/pull/1794
|
1545
|
+
|
1546
|
+
## Release v1.0.1 - 2017/12/14
|
1547
|
+
|
1548
|
+
### New features / Enhancements
|
1549
|
+
|
1550
|
+
* in_udp: Add receive_buffer_size parameter
|
1551
|
+
https://github.com/fluent/fluentd/pull/1788
|
1552
|
+
* in_tail: Add enable_stat_watcher option to disable inotify events
|
1553
|
+
https://github.com/fluent/fluentd/pull/1775
|
1554
|
+
* Relax strptime gem version
|
1555
|
+
|
1556
|
+
### Bug fixes
|
1557
|
+
|
1558
|
+
* in_tail: Properly handle moved back and truncated case
|
1559
|
+
https://github.com/fluent/fluentd/pull/1793
|
1560
|
+
* out_forward: Rebuild weight array to apply server setting properly
|
1561
|
+
https://github.com/fluent/fluentd/pull/1784
|
1562
|
+
* fluent-plugin-config-formatter: Use v1.0 for URL
|
1563
|
+
https://github.com/fluent/fluentd/pull/1781
|
1564
|
+
|
1565
|
+
## Release v1.0.0 - 2017/12/6
|
1566
|
+
|
1567
|
+
See [CNCF announcement](https://www.cncf.io/blog/2017/12/06/fluentd-v1-0/) :)
|
1568
|
+
|
1569
|
+
### New features / Enhancements
|
1570
|
+
|
1571
|
+
* out_copy: Support ignore_error argument in `<store>`
|
1572
|
+
https://github.com/fluent/fluentd/pull/1764
|
1573
|
+
* server helper: Improve resource usage of TLS transport
|
1574
|
+
https://github.com/fluent/fluentd/pull/1764
|
1575
|
+
* Disable tracepoint feature to omit unnecessary insts
|
1576
|
+
https://github.com/fluent/fluentd/pull/1764
|
1577
|
+
|
1578
|
+
### Bug fixes
|
1579
|
+
|
1580
|
+
* out_forward: Don't update retry state when failed to get ack response.
|
1581
|
+
https://github.com/fluent/fluentd/pull/1686
|
1582
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
1583
|
+
https://github.com/fluent/fluentd/pull/1763
|
1584
|
+
* Add description to parsers
|
1585
|
+
https://github.com/fluent/fluentd/pull/1776
|
1586
|
+
https://github.com/fluent/fluentd/pull/1777
|
1587
|
+
https://github.com/fluent/fluentd/pull/1778
|
1588
|
+
https://github.com/fluent/fluentd/pull/1779
|
1589
|
+
https://github.com/fluent/fluentd/pull/1780
|
1590
|
+
* filter_parser: Add parameter description
|
1591
|
+
https://github.com/fluent/fluentd/pull/1773
|
1592
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
1593
|
+
https://github.com/fluent/fluentd/pull/1763
|
1594
|
+
|
1595
|
+
# v0.14
|
1596
|
+
|
1597
|
+
## Release v0.14.25 - 2017/11/29
|
1598
|
+
|
1599
|
+
### New features / Enhancements
|
1600
|
+
|
1601
|
+
* Disable tracepoint feature to omit unnecessary insts
|
1602
|
+
https://github.com/fluent/fluentd/pull/1764
|
1603
|
+
|
1604
|
+
### Bug fixes
|
1605
|
+
|
1606
|
+
* out_forward: Don't update retry state when failed to get ack response.
|
1607
|
+
https://github.com/fluent/fluentd/pull/1686
|
1608
|
+
* plugin: Combine before_shutdown and shutdown call in one sequence.
|
1609
|
+
https://github.com/fluent/fluentd/pull/1763
|
1610
|
+
|
1611
|
+
## Release v0.14.24 - 2017/11/24
|
1612
|
+
|
1613
|
+
### New features / Enhancements
|
1614
|
+
|
1615
|
+
* plugin-config-formatter: Add link to plugin helper result
|
1616
|
+
https://github.com/fluent/fluentd/pull/1753
|
1617
|
+
* server helper: Refactor code
|
1618
|
+
https://github.com/fluent/fluentd/pull/1759
|
1619
|
+
|
1620
|
+
### Bug fixes
|
1621
|
+
|
1622
|
+
* supervisor: Don't call change_privilege twice
|
1623
|
+
https://github.com/fluent/fluentd/pull/1757
|
1624
|
+
|
1625
|
+
## Release v0.14.23 - 2017/11/15
|
1626
|
+
|
1627
|
+
### New features / Enhancements
|
1628
|
+
|
1629
|
+
* in_udp: Add remove_newline parameter
|
1630
|
+
https://github.com/fluent/fluentd/pull/1747
|
1631
|
+
|
1632
|
+
### Bug fixes
|
1633
|
+
|
1634
|
+
* buffer: Lock buffers in order of metadata
|
1635
|
+
https://github.com/fluent/fluentd/pull/1722
|
1636
|
+
* in_tcp: Fix log corruption under load.
|
1637
|
+
https://github.com/fluent/fluentd/pull/1729
|
1638
|
+
* out_forward: Fix elapsed time miscalculation in tcp heartbeat
|
1639
|
+
https://github.com/fluent/fluentd/pull/1738
|
1640
|
+
* supervisor: Fix worker pid handling during worker restart
|
1641
|
+
https://github.com/fluent/fluentd/pull/1739
|
1642
|
+
* in_tail: Skip setup failed watcher to avoid resource leak and log bloat
|
1643
|
+
https://github.com/fluent/fluentd/pull/1742
|
1644
|
+
* agent: Add error location to emit error logs
|
1645
|
+
https://github.com/fluent/fluentd/pull/1746
|
1646
|
+
* command: Consider hyphen and underscore in fluent-plugin-generate arguments
|
1647
|
+
https://github.com/fluent/fluentd/pull/1751
|
1648
|
+
|
1649
|
+
## Release v0.14.22 - 2017/11/01
|
1650
|
+
|
1651
|
+
### New features / Enhancements
|
1652
|
+
|
1653
|
+
* formatter_tsv: Add add_newline parameter
|
1654
|
+
https://github.com/fluent/fluentd/pull/1691
|
1655
|
+
* out_file/out_secondary_file: Support ${chunk_id} placeholder. This includes extrace_placeholders API change
|
1656
|
+
https://github.com/fluent/fluentd/pull/1708
|
1657
|
+
* record_accessor: Support double quotes in bracket notation
|
1658
|
+
https://github.com/fluent/fluentd/pull/1716
|
1659
|
+
* log: Show running ruby version in startup log
|
1660
|
+
https://github.com/fluent/fluentd/pull/1717
|
1661
|
+
* log: Log message when chunk is created
|
1662
|
+
https://github.com/fluent/fluentd/pull/1718
|
1663
|
+
* in_tail: Add pos_file duplication check
|
1664
|
+
https://github.com/fluent/fluentd/pull/1720
|
1665
|
+
|
1666
|
+
### Bug fixes
|
1667
|
+
|
1668
|
+
* parser_apache2: Delay time parser initialization
|
1669
|
+
https://github.com/fluent/fluentd/pull/1690
|
1670
|
+
* cert_option: Improve generated certificates' conformance to X.509 specification
|
1671
|
+
https://github.com/fluent/fluentd/pull/1714
|
1672
|
+
* buffer: Always lock chunks first to avoid deadlock
|
1673
|
+
https://github.com/fluent/fluentd/pull/1721
|
1674
|
+
|
1675
|
+
## Release v0.14.21 - 2017/09/07
|
1676
|
+
|
1677
|
+
### New features / Enhancements
|
1678
|
+
|
1679
|
+
* filter_parser: Support record_accessor in key_name
|
1680
|
+
https://github.com/fluent/fluentd/pull/1654
|
1681
|
+
* buffer: Support record_accessor in chunk keys
|
1682
|
+
https://github.com/fluent/fluentd/pull/1662
|
1683
|
+
|
1684
|
+
### Bug fixes
|
1685
|
+
|
1686
|
+
* compat_parameters: Support all syslog parser parameters
|
1687
|
+
https://github.com/fluent/fluentd/pull/1650
|
1688
|
+
* filter_record_transformer: Don't create new keys if the original record doesn't have `keep_keys` keys
|
1689
|
+
https://github.com/fluent/fluentd/pull/1663
|
1690
|
+
* in_tail: Fix the error when 'tag *' is configured
|
1691
|
+
https://github.com/fluent/fluentd/pull/1664
|
1692
|
+
* supervisor: Clear previous worker pids when receive kill signals.
|
1693
|
+
https://github.com/fluent/fluentd/pull/1683
|
1694
|
+
|
1695
|
+
## Release v0.14.20 - 2017/07/31
|
1696
|
+
|
1697
|
+
### New features / Enhancements
|
1698
|
+
|
1699
|
+
* plugin: Add record_accessor plugin helper
|
1700
|
+
https://github.com/fluent/fluentd/pull/1637
|
1701
|
+
* log: Add format and time_format parameters to `<system>` setting
|
1702
|
+
https://github.com/fluent/fluentd/pull/1644
|
1703
|
+
|
1704
|
+
### Bug fixes
|
1705
|
+
|
1706
|
+
* buf_file: Improve file handling to mitigate broken meta file
|
1707
|
+
https://github.com/fluent/fluentd/pull/1628
|
1708
|
+
* in_syslog: Fix the description of resolve_hostname parameter
|
1709
|
+
https://github.com/fluent/fluentd/pull/1633
|
1710
|
+
* process: Fix signal handling. Send signal to all workers
|
1711
|
+
https://github.com/fluent/fluentd/pull/1642
|
1712
|
+
* output: Fix error message typo
|
1713
|
+
https://github.com/fluent/fluentd/pull/1643
|
1714
|
+
|
1715
|
+
## Release v0.14.19 - 2017/07/12
|
1716
|
+
|
1717
|
+
### New features / Enhancements
|
1718
|
+
|
1719
|
+
* in_syslog: More characters are available in tag part of syslog format
|
1720
|
+
https://github.com/fluent/fluentd/pull/1610
|
1721
|
+
* in_syslog: Add resolve_hostname parameter
|
1722
|
+
https://github.com/fluent/fluentd/pull/1616
|
1723
|
+
* filter_grep: Support new configuration format by config_section
|
1724
|
+
https://github.com/fluent/fluentd/pull/1611
|
1725
|
+
|
1726
|
+
### Bug fixes
|
1727
|
+
|
1728
|
+
* output: Fix race condition of retry state in flush thread
|
1729
|
+
https://github.com/fluent/fluentd/pull/1623
|
1730
|
+
* test: Fix typo in test_in_tail.rb
|
1731
|
+
https://github.com/fluent/fluentd/pull/1622
|
1732
|
+
|
1733
|
+
## Release v0.14.18 - 2017/06/21
|
1734
|
+
|
1735
|
+
### New features / Enhancements
|
1736
|
+
|
1737
|
+
* parser: Add rfc5424 regex without priority
|
1738
|
+
https://github.com/fluent/fluentd/pull/1600
|
1739
|
+
|
1740
|
+
### Bug fixes
|
1741
|
+
|
1742
|
+
* in_tail: Fix timing issue that the excluded_path doesn't apply.
|
1743
|
+
https://github.com/fluent/fluentd/pull/1597
|
1744
|
+
* config: Fix broken UTF-8 encoded configuration file handling
|
1745
|
+
https://github.com/fluent/fluentd/pull/1592
|
1746
|
+
* out_forward: Don't stop heartbeat when error happen
|
1747
|
+
https://github.com/fluent/fluentd/pull/1602
|
1748
|
+
* Fix command name typo in plugin template
|
1749
|
+
https://github.com/fluent/fluentd/pull/1603
|
1750
|
+
|
1751
|
+
## Release v0.14.17 - 2017/05/29
|
1752
|
+
|
1753
|
+
### New features / Enhancements
|
1754
|
+
|
1755
|
+
* in_tail: Add ignore_repeated_permission_error
|
1756
|
+
https://github.com/fluent/fluentd/pull/1574
|
1757
|
+
* server: Accept private key for TLS server without passphrase
|
1758
|
+
https://github.com/fluent/fluentd/pull/1575
|
1759
|
+
* config: Validate workers option on standalone mode
|
1760
|
+
https://github.com/fluent/fluentd/pull/1577
|
1761
|
+
|
1762
|
+
### Bug fixes
|
1763
|
+
|
1764
|
+
* config: Mask all secret parameters in worker section
|
1765
|
+
https://github.com/fluent/fluentd/pull/1580
|
1766
|
+
* out_forward: Fix ack handling
|
1767
|
+
https://github.com/fluent/fluentd/pull/1581
|
1768
|
+
* plugin-config-format: Fix markdown format generator
|
1769
|
+
https://github.com/fluent/fluentd/pull/1585
|
1770
|
+
|
1771
|
+
## Release v0.14.16 - 2017/05/13
|
1772
|
+
|
1773
|
+
### New features / Enhancements
|
1774
|
+
|
1775
|
+
* config: Allow null byte in double-quoted string
|
1776
|
+
https://github.com/fluent/fluentd/pull/1552
|
1777
|
+
* parser: Support %iso8601 special case for time_format
|
1778
|
+
https://github.com/fluent/fluentd/pull/1562
|
1779
|
+
|
1780
|
+
### Bug fixes
|
1781
|
+
|
1782
|
+
* out_forward: Call proper method for each connection type
|
1783
|
+
https://github.com/fluent/fluentd/pull/1560
|
1784
|
+
* in_monitor_agent: check variable buffer is a Buffer instance
|
1785
|
+
https://github.com/fluent/fluentd/pull/1556
|
1786
|
+
* log: Add missing '<<' method to delegators
|
1787
|
+
https://github.com/fluent/fluentd/pull/1558
|
1788
|
+
* command: uninitialized constant Fluent::Engine in fluent-binlog-reader
|
1789
|
+
https://github.com/fluent/fluentd/pull/1568
|
1790
|
+
|
1791
|
+
## Release v0.14.15 - 2017/04/23
|
1792
|
+
|
1793
|
+
### New features / Enhancements
|
1794
|
+
|
1795
|
+
* Add `<worker N>` directive
|
1796
|
+
https://github.com/fluent/fluentd/pull/1507
|
1797
|
+
* in_tail: Do not warn that directories are unreadable in the in_tail plugin
|
1798
|
+
https://github.com/fluent/fluentd/pull/1540
|
1799
|
+
* output: Add formatted_to_msgpack_binary? to Output plugin API
|
1800
|
+
https://github.com/fluent/fluentd/pull/1547
|
1801
|
+
* windows: Allow the Windows Service name Fluentd runs as to be configurable
|
1802
|
+
https://github.com/fluent/fluentd/pull/1548
|
1803
|
+
|
1804
|
+
### Bug fixes
|
1805
|
+
|
1806
|
+
* in_http: Fix X-Forwarded-For header handling. Accpet multiple headers
|
1807
|
+
https://github.com/fluent/fluentd/pull/1535
|
1808
|
+
* Fix backward compatibility with Fluent::DetachProcess and Fluent::DetachMultiProcess
|
1809
|
+
https://github.com/fluent/fluentd/pull/1522
|
1810
|
+
* fix typo
|
1811
|
+
https://github.com/fluent/fluentd/pull/1521
|
1812
|
+
https://github.com/fluent/fluentd/pull/1523
|
1813
|
+
https://github.com/fluent/fluentd/pull/1544
|
1814
|
+
* test: Fix out_file test with timezone
|
1815
|
+
https://github.com/fluent/fluentd/pull/1546
|
1816
|
+
* windows: Quote the file path to the Ruby bin directory when starting fluentd as a windows service
|
1817
|
+
https://github.com/fluent/fluentd/pull/1536
|
1818
|
+
|
1819
|
+
## Release v0.14.14 - 2017/03/23
|
1820
|
+
|
1821
|
+
### New features / Enhancements
|
1822
|
+
|
1823
|
+
* in_http: Support 'application/msgpack` header
|
1824
|
+
https://github.com/fluent/fluentd/pull/1498
|
1825
|
+
* in_udp: Add message_length_limit parameter for parameter name consistency with in_syslog
|
1826
|
+
https://github.com/fluent/fluentd/pull/1515
|
1827
|
+
* in_monitor_agent: Start one HTTP server per worker on sequential port numbers
|
1828
|
+
https://github.com/fluent/fluentd/pull/1493
|
1829
|
+
* in_tail: Skip the refresh of watching list on startup
|
1830
|
+
https://github.com/fluent/fluentd/pull/1487
|
1831
|
+
* filter_parser: filter_parser: Add emit_invalid_record_to_error parameter
|
1832
|
+
https://github.com/fluent/fluentd/pull/1494
|
1833
|
+
* parser_syslog: Support RFC5424 syslog format
|
1834
|
+
https://github.com/fluent/fluentd/pull/1492
|
1835
|
+
* parser: Allow escape sequence in Apache access log
|
1836
|
+
https://github.com/fluent/fluentd/pull/1479
|
1837
|
+
* config: Add actual value in the placeholder error message
|
1838
|
+
https://github.com/fluent/fluentd/pull/1497
|
1839
|
+
* log: Add Fluent::Log#<< to support some SDKs
|
1840
|
+
https://github.com/fluent/fluentd/pull/1478
|
1841
|
+
|
1842
|
+
### Bug fixes
|
1843
|
+
|
1844
|
+
* Fix cleanup resource
|
1845
|
+
https://github.com/fluent/fluentd/pull/1483
|
1846
|
+
* config: Set encoding forcefully to avoid UndefinedConversionError
|
1847
|
+
https://github.com/fluent/fluentd/pull/1477
|
1848
|
+
* Fix Input and Output deadlock when buffer is full during startup
|
1849
|
+
https://github.com/fluent/fluentd/pull/1502
|
1850
|
+
* config: Fix log_level handling in `<system>`
|
1851
|
+
https://github.com/fluent/fluentd/pull/1501
|
1852
|
+
* Fix typo in root agent error log
|
1853
|
+
https://github.com/fluent/fluentd/pull/1491
|
1854
|
+
* storage: Fix a bug storage_create cannot accept hash as `conf` keyword argument
|
1855
|
+
https://github.com/fluent/fluentd/pull/1482
|
1856
|
+
|
1857
|
+
## Release v0.14.13 - 2017/02/17
|
1858
|
+
|
1859
|
+
### New features / Enhancements
|
1860
|
+
|
1861
|
+
* in_tail: Add 'limit_recently_modified' to limit watch files.
|
1862
|
+
https://github.com/fluent/fluentd/pull/1474
|
1863
|
+
* configuration: Improve 'flush_interval' handling for better message and backward compatibility
|
1864
|
+
https://github.com/fluent/fluentd/pull/1442
|
1865
|
+
* command: Add 'fluent-plugin-generate' command
|
1866
|
+
https://github.com/fluent/fluentd/pull/1427
|
1867
|
+
* output: Skip record when 'Output#format' returns nil
|
1868
|
+
https://github.com/fluent/fluentd/pull/1469
|
1869
|
+
|
1870
|
+
### Bug fixes
|
1871
|
+
|
1872
|
+
* output: Secondary calculation should consider 'retry_max_times'
|
1873
|
+
https://github.com/fluent/fluentd/pull/1452
|
1874
|
+
* Fix regression of deprecated 'process' module
|
1875
|
+
https://github.com/fluent/fluentd/pull/1443
|
1876
|
+
* Fix missing parser_regex require
|
1877
|
+
https://github.com/fluent/fluentd/issues/1458
|
1878
|
+
https://github.com/fluent/fluentd/pull/1453
|
1879
|
+
* Keep 'Fluent::BufferQueueLimitError' for existing plugins
|
1880
|
+
https://github.com/fluent/fluentd/pull/1456
|
1881
|
+
* in_tail: Untracked files should be removed from watching list to avoid memory bloat
|
1882
|
+
https://github.com/fluent/fluentd/pull/1467
|
1883
|
+
* in_tail: directories should be skipped when the ** pattern is used
|
1884
|
+
https://github.com/fluent/fluentd/pull/1464
|
1885
|
+
* record_transformer: Revert "Use BasicObject for cleanroom" for `enable_ruby` regression.
|
1886
|
+
https://github.com/fluent/fluentd/pull/1461
|
1887
|
+
* buf_file: handle "Too many open files" error to keep buffer and metadata pair
|
1888
|
+
https://github.com/fluent/fluentd/pull/1468
|
1889
|
+
|
1890
|
+
## Release v0.14.12 - 2017/01/30
|
1891
|
+
|
1892
|
+
### New features / Enhancements
|
1893
|
+
* Support multi process workers by `workers` option
|
1894
|
+
https://github.com/fluent/fluentd/pull/1386
|
1895
|
+
* Support TLS transport security layer by server plugin helper, and forward input/output plugins
|
1896
|
+
https://github.com/fluent/fluentd/pull/1423
|
1897
|
+
* Update internal log event handling to route log events to `@FLUENT_LOG` label if configured, suppress log events in startup/shutdown in default
|
1898
|
+
https://github.com/fluent/fluentd/pull/1405
|
1899
|
+
* Rename buffer plugin chunk limit parameters for consistency
|
1900
|
+
https://github.com/fluent/fluentd/pull/1412
|
1901
|
+
* Encode string values from configuration files in UTF8
|
1902
|
+
https://github.com/fluent/fluentd/pull/1411
|
1903
|
+
* Reorder plugin load paths to load rubygem plugins earlier than built-in plugins to overwrite them
|
1904
|
+
https://github.com/fluent/fluentd/pull/1410
|
1905
|
+
* Clock API to control internal thread control
|
1906
|
+
https://github.com/fluent/fluentd/pull/1425
|
1907
|
+
* Validate `config_param` options to restrict unexpected specifications
|
1908
|
+
https://github.com/fluent/fluentd/pull/1437
|
1909
|
+
* formatter: Add `add_newline` option to get formatted lines without newlines
|
1910
|
+
https://github.com/fluent/fluentd/pull/1420
|
1911
|
+
* in_forward: Add `ignore_network_errors_at_startup` option for automated cluster deployment
|
1912
|
+
https://github.com/fluent/fluentd/pull/1399
|
1913
|
+
* in_forward: Close listening socket in #stop, not to accept new connection request in early stage of shutdown
|
1914
|
+
https://github.com/fluent/fluentd/pull/1401
|
1915
|
+
* out_forward: Ensure to pack values in `str` type of msgpack
|
1916
|
+
https://github.com/fluent/fluentd/pull/1413
|
1917
|
+
* in_tail: Add `emit_unmatched_lines` to capture lines which unmatch configured regular expressions
|
1918
|
+
https://github.com/fluent/fluentd/pull/1421
|
1919
|
+
* in_tail: Add `open_on_every_update` to read lines from files opened in exclusive mode on Windows platform
|
1920
|
+
https://github.com/fluent/fluentd/pull/1409
|
1921
|
+
* in_monitor_agent: Add `with_ivars` query parameter to get instance variables only for specified instance variables
|
1922
|
+
https://github.com/fluent/fluentd/pull/1393
|
1923
|
+
* storage_local: Generate file store path using `usage`, with `root_dir` configuration
|
1924
|
+
https://github.com/fluent/fluentd/pull/1438
|
1925
|
+
* Improve test stability
|
1926
|
+
https://github.com/fluent/fluentd/pull/1426
|
1927
|
+
|
1928
|
+
### Bug fixes
|
1929
|
+
* Fix bug to ignore command line options: `--rpc-endpoint`, `--suppress-config-dump`, etc
|
1930
|
+
https://github.com/fluent/fluentd/pull/1398
|
1931
|
+
* Fix bug to block infinitely in shutdown when buffer is full and `overflow_action` is `block`
|
1932
|
+
https://github.com/fluent/fluentd/pull/1396
|
1933
|
+
* buf_file: Fix bug not to use `root_dir` even if configured correctly
|
1934
|
+
https://github.com/fluent/fluentd/pull/1417
|
1935
|
+
* filter_record_transformer: Fix to use BasicObject for clean room
|
1936
|
+
https://github.com/fluent/fluentd/pull/1415
|
1937
|
+
* filter_record_transformer: Fix bug that `remove_keys` doesn't work with `renew_time_key`
|
1938
|
+
https://github.com/fluent/fluentd/pull/1433
|
1939
|
+
* in_monitor_agent: Fix bug to crash with NoMethodError for some output plugins
|
1940
|
+
https://github.com/fluent/fluentd/pull/1365
|
1941
|
+
|
1942
|
+
## Release v0.14.11 - 2016/12/26
|
1943
|
+
|
1944
|
+
### New features / Enhancements
|
1945
|
+
* Add "root_dir" parameter in `<system>` directive to configure server root directory, used for buffer/storage paths
|
1946
|
+
https://github.com/fluent/fluentd/pull/1374
|
1947
|
+
* Fix not to restart Fluentd processes when unrecoverable errors occur
|
1948
|
+
https://github.com/fluent/fluentd/pull/1359
|
1949
|
+
* Show warnings in log when output flush operation takes longer time than threshold
|
1950
|
+
https://github.com/fluent/fluentd/pull/1370
|
1951
|
+
* formatter_csv: Raise configuration error when no field names are specified
|
1952
|
+
https://github.com/fluent/fluentd/pull/1369
|
1953
|
+
* in_syslog: Update implementation to use plugin helpers
|
1954
|
+
https://github.com/fluent/fluentd/pull/1382
|
1955
|
+
* in_forward: Add a configuration parameter "source_address_key"
|
1956
|
+
https://github.com/fluent/fluentd/pull/1382
|
1957
|
+
* in_monitor_agent: Add a parameter "include_retry" to get detail retry status
|
1958
|
+
https://github.com/fluent/fluentd/pull/1387
|
1959
|
+
* Add Ruby 2.4 into supported ruby versions
|
1960
|
+
|
1961
|
+
### Bug fixes
|
1962
|
+
* Fix to set process name of supervisor process
|
1963
|
+
https://github.com/fluent/fluentd/pull/1380
|
1964
|
+
* in_forward: Fix a bug not to handle "require_ack_response" correctly
|
1965
|
+
https://github.com/fluent/fluentd/pull/1389
|
1966
|
+
|
1967
|
+
|
1968
|
+
## Release v0.14.10 - 2016/12/14
|
1969
|
+
|
1970
|
+
### New features / Enhancement
|
1971
|
+
|
1972
|
+
* Add socket/server plugin helper to write TCP/UDP clients/servers as Fluentd plugin
|
1973
|
+
https://github.com/fluent/fluentd/pull/1312
|
1974
|
+
https://github.com/fluent/fluentd/pull/1350
|
1975
|
+
https://github.com/fluent/fluentd/pull/1356
|
1976
|
+
https://github.com/fluent/fluentd/pull/1362
|
1977
|
+
* Fix to raise errors when injected hostname is also specified as chunk key
|
1978
|
+
https://github.com/fluent/fluentd/pull/1357
|
1979
|
+
* in_tail: Optimize to read lines from file
|
1980
|
+
https://github.com/fluent/fluentd/pull/1325
|
1981
|
+
* in_monitor_agent: Add new parameter "include_config"(default: true)
|
1982
|
+
https://github.com/fluent/fluentd/pull/1317
|
1983
|
+
* in_syslog: Add "priority_key" and "facility_key" options
|
1984
|
+
https://github.com/fluent/fluentd/pull/1351
|
1985
|
+
* filter_record_transformer: Remove obsoleted syntax like "${message}" and not to dump records in logs
|
1986
|
+
https://github.com/fluent/fluentd/pull/1328
|
1987
|
+
* Add an option "--time-as-integer" to fluent-cat command to send events from v0.14 fluent-cat to v0.12 fluentd
|
1988
|
+
https://github.com/fluent/fluentd/pull/1349
|
1989
|
+
|
1990
|
+
### Bug fixes
|
1991
|
+
|
1992
|
+
* Specify correct Oj options for newer versions (Oj 2.18.0 or later)
|
1993
|
+
https://github.com/fluent/fluentd/pull/1331
|
1994
|
+
* TimeSlice output plugins (in v0.12 style) raise errors when "utc" parameter is specified
|
1995
|
+
https://github.com/fluent/fluentd/pull/1319
|
1996
|
+
* Parser plugins cannot use options for regular expressions
|
1997
|
+
https://github.com/fluent/fluentd/pull/1326
|
1998
|
+
* Fix bugs not to raise errors to use logger in v0.12 plugins
|
1999
|
+
https://github.com/fluent/fluentd/pull/1344
|
2000
|
+
https://github.com/fluent/fluentd/pull/1332
|
2001
|
+
* Fix bug about shutting down Fluentd in Windows
|
2002
|
+
https://github.com/fluent/fluentd/pull/1367
|
2003
|
+
* in_tail: Close files explicitly in tests
|
2004
|
+
https://github.com/fluent/fluentd/pull/1327
|
2005
|
+
* out_forward: Fix bug not to convert buffer configurations into v0.14 parameters
|
2006
|
+
https://github.com/fluent/fluentd/pull/1337
|
2007
|
+
* out_forward: Fix bug to raise error when "expire_dns_cache" is specified
|
2008
|
+
https://github.com/fluent/fluentd/pull/1346
|
2009
|
+
* out_file: Fix bug to raise error about buffer chunking when it's configured as secondary
|
2010
|
+
https://github.com/fluent/fluentd/pull/1338
|
2011
|
+
|
2012
|
+
## Release v0.14.9 - 2016/11/15
|
2013
|
+
|
2014
|
+
### New features / Enhancement
|
2015
|
+
|
2016
|
+
* filter_parser: Port fluent-plugin-parser into built-in plugin
|
2017
|
+
https://github.com/fluent/fluentd/pull/1191
|
2018
|
+
* parser/formatter plugin helpers with default @type in plugin side
|
2019
|
+
https://github.com/fluent/fluentd/pull/1267
|
2020
|
+
* parser: Reconstruct Parser related classes
|
2021
|
+
https://github.com/fluent/fluentd/pull/1286
|
2022
|
+
* filter_record_transformer: Remove old behaviours
|
2023
|
+
https://github.com/fluent/fluentd/pull/1311
|
2024
|
+
* Migrate some built-in plugins into v0.14 API
|
2025
|
+
https://github.com/fluent/fluentd/pull/1257 (out_file)
|
2026
|
+
https://github.com/fluent/fluentd/pull/1297 (out_exec, out_exec_filter)
|
2027
|
+
https://github.com/fluent/fluentd/pull/1306 (in_forward, out_forward)
|
2028
|
+
https://github.com/fluent/fluentd/pull/1308 (in_http)
|
2029
|
+
* test: Improve test drivers
|
2030
|
+
https://github.com/fluent/fluentd/pull/1302
|
2031
|
+
https://github.com/fluent/fluentd/pull/1305
|
2032
|
+
|
2033
|
+
### Bug fixes
|
2034
|
+
|
2035
|
+
* log: Avoid name conflict between Fluent::Logger
|
2036
|
+
https://github.com/fluent/fluentd/pull/1274
|
2037
|
+
* fluent-cat: Fix fluent-cat command to send sub-second precision time
|
2038
|
+
https://github.com/fluent/fluentd/pull/1277
|
2039
|
+
* config: Fix a bug not to overwrite default value with nil
|
2040
|
+
https://github.com/fluent/fluentd/pull/1296
|
2041
|
+
* output: Fix timezone for compat timesliced output plugins
|
2042
|
+
https://github.com/fluent/fluentd/pull/1307
|
2043
|
+
* out_forward: fix not to raise error when out_forward is initialized as secondary
|
2044
|
+
https://github.com/fluent/fluentd/pull/1313
|
2045
|
+
* output: Event router for secondary output
|
2046
|
+
https://github.com/fluent/fluentd/pull/1283
|
2047
|
+
* test: fix to return the block value as expected by many rubyists
|
2048
|
+
https://github.com/fluent/fluentd/pull/1284
|
2049
|
+
|
2050
|
+
## Release v0.14.8 - 2016/10/13
|
2051
|
+
|
2052
|
+
### Bug fixes
|
2053
|
+
|
2054
|
+
* Add msgpack_each to buffer chunks in compat-layer output plugins
|
2055
|
+
https://github.com/fluent/fluentd/pull/1273
|
2056
|
+
|
2057
|
+
## Release v0.14.7 - 2016/10/07
|
2058
|
+
|
2059
|
+
### New features / Enhancement
|
2060
|
+
|
2061
|
+
* Support data compression in buffer plugins
|
2062
|
+
https://github.com/fluent/fluentd/pull/1172
|
2063
|
+
* in_forward: support to transfer compressed data
|
2064
|
+
https://github.com/fluent/fluentd/pull/1179
|
2065
|
+
* out_stdout: fix to show nanosecond resolution time
|
2066
|
+
https://github.com/fluent/fluentd/pull/1249
|
2067
|
+
* Add option to rotate Fluentd daemon's log
|
2068
|
+
https://github.com/fluent/fluentd/pull/1235
|
2069
|
+
* Add extract plugin helper, with symmetric time parameter support in parser/formatter and inject/extract
|
2070
|
+
https://github.com/fluent/fluentd/pull/1207
|
2071
|
+
* Add a feature to parse/format numeric time (unix time [+ subsecond value])
|
2072
|
+
https://github.com/fluent/fluentd/pull/1254
|
2073
|
+
* Raise configuration errors for inconsistent `<label>` configurations
|
2074
|
+
https://github.com/fluent/fluentd/pull/1233
|
2075
|
+
* Fix to instantiate an unconfigured section even for multi: true
|
2076
|
+
https://github.com/fluent/fluentd/pull/1210
|
2077
|
+
* Add validators of placeholders for buffering key extraction
|
2078
|
+
https://github.com/fluent/fluentd/pull/1255
|
2079
|
+
* Fix to show log messages about filter optimization only when needed
|
2080
|
+
https://github.com/fluent/fluentd/pull/1227
|
2081
|
+
* Add some features to write plugins more easily
|
2082
|
+
https://github.com/fluent/fluentd/pull/1256
|
2083
|
+
* Add a tool to load dumped events from file
|
2084
|
+
https://github.com/fluent/fluentd/pull/1165
|
2085
|
+
|
2086
|
+
### Bug fixes
|
2087
|
+
|
2088
|
+
* Fix Oj's default option to encode/decode JSON in the same way with Yajl
|
2089
|
+
https://github.com/fluent/fluentd/pull/1147
|
2090
|
+
https://github.com/fluent/fluentd/pull/1239
|
2091
|
+
* Fix to raise correct configuration errors
|
2092
|
+
https://github.com/fluent/fluentd/pull/1223
|
2093
|
+
* Fix a bug to call `shutdown` method (and some others) twice
|
2094
|
+
https://github.com/fluent/fluentd/pull/1242
|
2095
|
+
* Fix to enable `chunk.each` only when it's encoded by msgpack
|
2096
|
+
https://github.com/fluent/fluentd/pull/1263
|
2097
|
+
* Fix a bug not to stop enqueue/flush threads correctly
|
2098
|
+
https://github.com/fluent/fluentd/pull/1264
|
2099
|
+
* out_forward: fix a bug that UDP heartbeat doesn't work
|
2100
|
+
https://github.com/fluent/fluentd/pull/1238
|
2101
|
+
* out_file: fix a crash bug when v0.14 enables symlink and resumes existing buffer file chunk generated by v0.12
|
2102
|
+
https://github.com/fluent/fluentd/pull/1234
|
2103
|
+
* in_monitor_agent: fix compatibility problem between outputs of v0.12 and v0.14
|
2104
|
+
https://github.com/fluent/fluentd/pull/1232
|
2105
|
+
* in_tail: fix a bug to crash to read large amount logs
|
2106
|
+
https://github.com/fluent/fluentd/pull/1259
|
2107
|
+
https://github.com/fluent/fluentd/pull/1261
|
2108
|
+
|
2109
|
+
## Release v0.14.6 - 2016/09/07
|
2110
|
+
|
2111
|
+
### Bug fixes
|
2112
|
+
|
2113
|
+
* in_tail: Add a missing parser_multiline require
|
2114
|
+
https://github.com/fluent/fluentd/pull/1212
|
2115
|
+
* forward: Mark secret parameters of forward plugins as secret
|
2116
|
+
https://github.com/fluent/fluentd/pull/1209
|
2117
|
+
|
2118
|
+
## Release v0.14.5 - 2016/09/06
|
2119
|
+
|
2120
|
+
### New features / Enhancement
|
2121
|
+
|
2122
|
+
* Add authentication / authorization feature to forward protocol and in/out_forward plugins
|
2123
|
+
https://github.com/fluent/fluentd/pull/1136
|
2124
|
+
* Add a new plugin to dump buffers in retries as secondary plugin
|
2125
|
+
https://github.com/fluent/fluentd/pull/1154
|
2126
|
+
* Merge out_buffered_stdout and out_buffered_null into out_stdout and out_null
|
2127
|
+
https://github.com/fluent/fluentd/pull/1200
|
2128
|
+
|
2129
|
+
### Bug fixes
|
2130
|
+
|
2131
|
+
* Raise configuration errors to clarify what's wrong when "@type" is missing
|
2132
|
+
https://github.com/fluent/fluentd/pull/1202
|
2133
|
+
* Fix the bug not to launch Fluentd when v0.12 MultiOutput plugin is configured
|
2134
|
+
https://github.com/fluent/fluentd/pull/1206
|
2135
|
+
|
2136
|
+
## Release v0.14.4 - 2016/08/31
|
2137
|
+
|
2138
|
+
### New features / Enhancement
|
2139
|
+
|
2140
|
+
* Add a method to Filter API to update time of events
|
2141
|
+
https://github.com/fluent/fluentd/pull/1140
|
2142
|
+
* Improve performance of filter pipeline
|
2143
|
+
https://github.com/fluent/fluentd/pull/1145
|
2144
|
+
* Fix to suppress not to warn about different plugins for primary and secondary without any problems
|
2145
|
+
https://github.com/fluent/fluentd/pull/1153
|
2146
|
+
* Add deprecated/obsoleted options to config_param to show removed/warned parameters
|
2147
|
+
https://github.com/fluent/fluentd/pull/1186
|
2148
|
+
* in_forward: Add a feature source_hostname_key to inject source hostname into records
|
2149
|
+
https://github.com/fluent/fluentd/pull/807
|
2150
|
+
* in_tail: Add a feature from_encoding to specify both encoding from and to
|
2151
|
+
https://github.com/fluent/fluentd/pull/1067
|
2152
|
+
* filter_record_transformer: Fix to prevent overwriting reserved placeholder keys
|
2153
|
+
https://github.com/fluent/fluentd/pull/1176
|
2154
|
+
* Migrate some built-in plugins into v0.14 API
|
2155
|
+
https://github.com/fluent/fluentd/pull/1149
|
2156
|
+
https://github.com/fluent/fluentd/pull/1151
|
2157
|
+
* Update dependencies
|
2158
|
+
https://github.com/fluent/fluentd/pull/1193
|
2159
|
+
|
2160
|
+
### Bug fixes
|
2161
|
+
|
2162
|
+
* Fix to start/stop/restart Fluentd processes correctly on Windows environment
|
2163
|
+
https://github.com/fluent/fluentd/pull/1171
|
2164
|
+
https://github.com/fluent/fluentd/pull/1192
|
2165
|
+
* Fix to handle Windows events correctly in winsvc.rb
|
2166
|
+
https://github.com/fluent/fluentd/pull/1155
|
2167
|
+
https://github.com/fluent/fluentd/pull/1170
|
2168
|
+
* Fix not to continue to restart workers for configuration errors
|
2169
|
+
https://github.com/fluent/fluentd/pull/1183
|
2170
|
+
* Fix output threads to start enqueue/flush buffers until plugins' start method ends
|
2171
|
+
https://github.com/fluent/fluentd/pull/1190
|
2172
|
+
* Fix a bug not to set umask 0
|
2173
|
+
https://github.com/fluent/fluentd/pull/1152
|
2174
|
+
* Fix resource leak on one-shot timers
|
2175
|
+
https://github.com/fluent/fluentd/pull/1178
|
2176
|
+
* Fix to call plugin helper methods in configure
|
2177
|
+
https://github.com/fluent/fluentd/pull/1184
|
2178
|
+
* Fix a bug to count event size
|
2179
|
+
https://github.com/fluent/fluentd/pull/1164/files
|
2180
|
+
* Fix to require missed compat modules
|
2181
|
+
https://github.com/fluent/fluentd/pull/1168
|
2182
|
+
* Fix to start properly for plugins under MultiOutput
|
2183
|
+
https://github.com/fluent/fluentd/pull/1167
|
2184
|
+
* Fix test drivers to set class name into plugin instances
|
2185
|
+
https://github.com/fluent/fluentd/pull/1069
|
2186
|
+
* Fix tests not to use mocks for Time (improve test stabilization)
|
2187
|
+
https://github.com/fluent/fluentd/pull/1194
|
2188
|
+
|
2189
|
+
## Release 0.14.3 - 2016/08/30
|
2190
|
+
|
2191
|
+
* Fix the dependency for ServerEngine 1.x
|
2192
|
+
|
2193
|
+
## Release 0.14.2 - 2016/08/09
|
2194
|
+
|
2195
|
+
### New features / Enhancement
|
2196
|
+
|
2197
|
+
* Fix to split large event stream into some/many chunks in buffers
|
2198
|
+
https://github.com/fluent/fluentd/pull/1062
|
2199
|
+
* Add parser and filter support in compat_parameters plugin helper
|
2200
|
+
https://github.com/fluent/fluentd/pull/1079
|
2201
|
+
* Add a RPC call to flush buffers and stop workers
|
2202
|
+
https://github.com/fluent/fluentd/pull/1134
|
2203
|
+
* Update forward protocol to pass the number of events in a payload
|
2204
|
+
https://github.com/fluent/fluentd/pull/1137
|
2205
|
+
* Improve performance of some built-in formatter plugins
|
2206
|
+
https://github.com/fluent/fluentd/pull/1082
|
2207
|
+
https://github.com/fluent/fluentd/pull/1086
|
2208
|
+
* Migrate some built-in plugins and plugin util modules into v0.14 API
|
2209
|
+
https://github.com/fluent/fluentd/pull/1058
|
2210
|
+
https://github.com/fluent/fluentd/pull/1061
|
2211
|
+
https://github.com/fluent/fluentd/pull/1076
|
2212
|
+
https://github.com/fluent/fluentd/pull/1078
|
2213
|
+
https://github.com/fluent/fluentd/pull/1081
|
2214
|
+
https://github.com/fluent/fluentd/pull/1083
|
2215
|
+
https://github.com/fluent/fluentd/pull/1091
|
2216
|
+
* Register RegExpParser as a parser plugin explicitly
|
2217
|
+
https://github.com/fluent/fluentd/pull/1094
|
2218
|
+
* Add delimiter option to CSV parser
|
2219
|
+
https://github.com/fluent/fluentd/pull/1108
|
2220
|
+
* Add an option to receive longer udp syslog messages
|
2221
|
+
https://github.com/fluent/fluentd/pull/1127
|
2222
|
+
* Add a option to suspend internal status in dummy plugin
|
2223
|
+
https://github.com/fluent/fluentd/pull/900
|
2224
|
+
* Add a feature to capture filtered records in test driver for Filter plugins
|
2225
|
+
https://github.com/fluent/fluentd/pull/1077
|
2226
|
+
* Add some utility methods to plugin test drivers
|
2227
|
+
https://github.com/fluent/fluentd/pull/1114
|
2228
|
+
|
2229
|
+
### Bug fixes
|
2230
|
+
|
2231
|
+
* Fix bug to read non buffer-chunk files as buffer chunks when Fluentd resumed
|
2232
|
+
https://github.com/fluent/fluentd/pull/1124
|
2233
|
+
* Fix bug not to load Filter plugins which are specified in configurations
|
2234
|
+
https://github.com/fluent/fluentd/pull/1118
|
2235
|
+
* Fix bug to ignore `-p` option to specify directories of plugins
|
2236
|
+
https://github.com/fluent/fluentd/pull/1133
|
2237
|
+
* Fix bug to overwrite base class configuration section definitions by subclasses
|
2238
|
+
https://github.com/fluent/fluentd/pull/1119
|
2239
|
+
* Fix to stop Fluentd worker process by Ctrl-C when --no-supervisor specified
|
2240
|
+
https://github.com/fluent/fluentd/pull/1089
|
2241
|
+
* Fix regression about RPC call to reload configuration
|
2242
|
+
https://github.com/fluent/fluentd/pull/1093
|
2243
|
+
* Specify to ensure Oj JSON parser to use strict mode
|
2244
|
+
https://github.com/fluent/fluentd/pull/1147
|
2245
|
+
* Fix unexisting path handling in Windows environment
|
2246
|
+
https://github.com/fluent/fluentd/pull/1104
|
2247
|
+
|
2248
|
+
## Release 0.14.1 - 2016/06/30
|
2249
|
+
|
2250
|
+
### New features / Enhancement
|
2251
|
+
|
2252
|
+
* Add plugin helpers for parsers and formatters
|
2253
|
+
https://github.com/fluent/fluentd/pull/1023
|
2254
|
+
* Extract some mixins into compat modules
|
2255
|
+
https://github.com/fluent/fluentd/pull/1044
|
2256
|
+
https://github.com/fluent/fluentd/pull/1052
|
2257
|
+
* Add utility methods for tests and test drivers
|
2258
|
+
https://github.com/fluent/fluentd/pull/1047
|
2259
|
+
* Migrate some built-in plugins to v0.14 APIs
|
2260
|
+
https://github.com/fluent/fluentd/pull/1049
|
2261
|
+
https://github.com/fluent/fluentd/pull/1057
|
2262
|
+
https://github.com/fluent/fluentd/pull/1060
|
2263
|
+
https://github.com/fluent/fluentd/pull/1064
|
2264
|
+
* Add support of X-Forwarded-For header in in_http plugin
|
2265
|
+
https://github.com/fluent/fluentd/pull/1051
|
2266
|
+
* Warn not to create too many staged chunks at configure
|
2267
|
+
https://github.com/fluent/fluentd/pull/1054
|
2268
|
+
* Add a plugin helper to inject tag/time/hostname
|
2269
|
+
https://github.com/fluent/fluentd/pull/1063
|
2270
|
+
|
2271
|
+
### Bug fixes
|
2272
|
+
|
2273
|
+
* Fix in_monitor_agent for v0.14 plugins
|
2274
|
+
https://github.com/fluent/fluentd/pull/1003
|
2275
|
+
* Fix to call #format_stream of plugins themselves when RecordFilter mixin included
|
2276
|
+
https://github.com/fluent/fluentd/pull/1005
|
2277
|
+
* Fix shutdown sequence to wait force flush
|
2278
|
+
https://github.com/fluent/fluentd/pull/1009
|
2279
|
+
* Fix a deadlock bug in shutdown
|
2280
|
+
https://github.com/fluent/fluentd/pull/1010
|
2281
|
+
* Fix to require DetachProcessMixin in default for compat plugins
|
2282
|
+
https://github.com/fluent/fluentd/pull/1014
|
2283
|
+
* Fix to overwrite configure_proxy name only for root sections for debugging
|
2284
|
+
https://github.com/fluent/fluentd/pull/1015
|
2285
|
+
* Rename file for in_unix plugin
|
2286
|
+
https://github.com/fluent/fluentd/pull/1017
|
2287
|
+
* Fix a bug not to create pid file when daemonized
|
2288
|
+
https://github.com/fluent/fluentd/pull/1021
|
2289
|
+
* Fix wrong DEFAULT_PLUGIN_PATH
|
2290
|
+
https://github.com/fluent/fluentd/pull/1028
|
2291
|
+
* Fix a bug not to use primary plugin type for secondary in default
|
2292
|
+
https://github.com/fluent/fluentd/pull/1032
|
2293
|
+
* Add --run-worker option to distinguish to run as worker without supervisor
|
2294
|
+
https://github.com/fluent/fluentd/pull/1033
|
2295
|
+
* Fix regression of fluent-debug command
|
2296
|
+
https://github.com/fluent/fluentd/pull/1046
|
2297
|
+
* Update windows-pr dependency to 1.2.5
|
2298
|
+
https://github.com/fluent/fluentd/pull/1065
|
2299
|
+
* Fix supervisor to pass RUBYOPT to worker processes
|
2300
|
+
https://github.com/fluent/fluentd/pull/1066
|
2301
|
+
|
2302
|
+
## Release 0.14.0 - 2016/05/25
|
2303
|
+
|
2304
|
+
### New features / Enhancement
|
2305
|
+
|
2306
|
+
This list includes changes of 0.14.0.pre.1 and release candidates.
|
2307
|
+
|
2308
|
+
* Update supported Ruby version to 2.1 or later
|
2309
|
+
https://github.com/fluent/fluentd/pull/692
|
2310
|
+
* Sub-second event time support
|
2311
|
+
https://github.com/fluent/fluentd/pull/653
|
2312
|
+
* Windows support and supervisor improvement
|
2313
|
+
https://github.com/fluent/fluentd/pull/674
|
2314
|
+
https://github.com/fluent/fluentd/pull/831
|
2315
|
+
https://github.com/fluent/fluentd/pull/880
|
2316
|
+
* Add New plugin API
|
2317
|
+
https://github.com/fluent/fluentd/pull/800
|
2318
|
+
https://github.com/fluent/fluentd/pull/843
|
2319
|
+
https://github.com/fluent/fluentd/pull/866
|
2320
|
+
https://github.com/fluent/fluentd/pull/905
|
2321
|
+
https://github.com/fluent/fluentd/pull/906
|
2322
|
+
https://github.com/fluent/fluentd/pull/917
|
2323
|
+
https://github.com/fluent/fluentd/pull/928
|
2324
|
+
https://github.com/fluent/fluentd/pull/943
|
2325
|
+
https://github.com/fluent/fluentd/pull/964
|
2326
|
+
https://github.com/fluent/fluentd/pull/965
|
2327
|
+
https://github.com/fluent/fluentd/pull/972
|
2328
|
+
https://github.com/fluent/fluentd/pull/983
|
2329
|
+
* Add standard chunking format
|
2330
|
+
https://github.com/fluent/fluentd/pull/914
|
2331
|
+
* Add Compatibility layer for v0.12 plugins
|
2332
|
+
https://github.com/fluent/fluentd/pull/912
|
2333
|
+
https://github.com/fluent/fluentd/pull/969
|
2334
|
+
https://github.com/fluent/fluentd/pull/974
|
2335
|
+
https://github.com/fluent/fluentd/pull/992
|
2336
|
+
https://github.com/fluent/fluentd/pull/999
|
2337
|
+
* Add Plugin Storage API
|
2338
|
+
https://github.com/fluent/fluentd/pull/864
|
2339
|
+
https://github.com/fluent/fluentd/pull/910
|
2340
|
+
* Enforce to use router.emit instead of Engine.emit
|
2341
|
+
https://github.com/fluent/fluentd/pull/883
|
2342
|
+
* log: Show plugin name and id in logs
|
2343
|
+
https://github.com/fluent/fluentd/pull/860
|
2344
|
+
* log: Dump configurations with v1 syntax in logs
|
2345
|
+
https://github.com/fluent/fluentd/pull/867
|
2346
|
+
* log: Dump errors with class in logs
|
2347
|
+
https://github.com/fluent/fluentd/pull/899
|
2348
|
+
* config: Add simplified syntax for configuration values of hash and array
|
2349
|
+
https://github.com/fluent/fluentd/pull/875
|
2350
|
+
* config: Add 'init' option to config_section to initialize section objects
|
2351
|
+
https://github.com/fluent/fluentd/pull/877
|
2352
|
+
* config: Support multiline string in quoted strings
|
2353
|
+
https://github.com/fluent/fluentd/pull/929
|
2354
|
+
* config: Add optional arguments on Element#elements to select child elements
|
2355
|
+
https://github.com/fluent/fluentd/pull/948
|
2356
|
+
* config: Show deprecated warnings for reserved parameters
|
2357
|
+
https://github.com/fluent/fluentd/pull/971
|
2358
|
+
* config: Make the detach process forward interval configurable
|
2359
|
+
https://github.com/fluent/fluentd/pull/982
|
2360
|
+
* in_tail: Add 'path_key' option to inject tailing path
|
2361
|
+
https://github.com/fluent/fluentd/pull/951
|
2362
|
+
* Remove in_status plugin
|
2363
|
+
https://github.com/fluent/fluentd/pull/690
|
2364
|
+
|
2365
|
+
### Bug fixes
|
2366
|
+
|
2367
|
+
* config: Enum list must be of symbols
|
2368
|
+
https://github.com/fluent/fluentd/pull/821
|
2369
|
+
* config: Fix to dup values in default
|
2370
|
+
https://github.com/fluent/fluentd/pull/827
|
2371
|
+
* config: Fix problems about overwriting subsections
|
2372
|
+
https://github.com/fluent/fluentd/pull/844
|
2373
|
+
https://github.com/fluent/fluentd/pull/981
|
2374
|
+
* log: Serialize Fluent::EventTime as Integer in JSON
|
2375
|
+
https://github.com/fluent/fluentd/pull/904
|
2376
|
+
* out_forward: Add missing error class and tests for it
|
2377
|
+
https://github.com/fluent/fluentd/pull/922
|
2378
|
+
|
2379
|
+
### Internal fix / Refactoring
|
2380
|
+
|
2381
|
+
* Fix dependencies between files
|
2382
|
+
https://github.com/fluent/fluentd/pull/799
|
2383
|
+
https://github.com/fluent/fluentd/pull/808
|
2384
|
+
https://github.com/fluent/fluentd/pull/823
|
2385
|
+
https://github.com/fluent/fluentd/pull/824
|
2386
|
+
https://github.com/fluent/fluentd/pull/825
|
2387
|
+
https://github.com/fluent/fluentd/pull/826
|
2388
|
+
https://github.com/fluent/fluentd/pull/828
|
2389
|
+
https://github.com/fluent/fluentd/pull/859
|
2390
|
+
https://github.com/fluent/fluentd/pull/892
|
2391
|
+
* Separate PluginId from config
|
2392
|
+
https://github.com/fluent/fluentd/pull/832
|
2393
|
+
* Separate MessagePack factory from Engine
|
2394
|
+
https://github.com/fluent/fluentd/pull/871
|
2395
|
+
* Register plugins to registry
|
2396
|
+
https://github.com/fluent/fluentd/pull/838
|
2397
|
+
* Move TypeConverter mixin to mixin.rb
|
2398
|
+
https://github.com/fluent/fluentd/pull/842
|
2399
|
+
* Override default configurations by `<system>`
|
2400
|
+
https://github.com/fluent/fluentd/pull/854
|
2401
|
+
* Suppress Ruby level warnings
|
2402
|
+
https://github.com/fluent/fluentd/pull/846
|
2403
|
+
https://github.com/fluent/fluentd/pull/852
|
2404
|
+
https://github.com/fluent/fluentd/pull/890
|
2405
|
+
https://github.com/fluent/fluentd/pull/946
|
2406
|
+
https://github.com/fluent/fluentd/pull/955
|
2407
|
+
https://github.com/fluent/fluentd/pull/966
|
2408
|
+
|
2409
|
+
See https://github.com/fluent/fluentd/blob/v0.12/CHANGELOG.md for v0.12 changelog
|