fluentd 0.12.40 → 1.6.2
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 +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- data/.gitignore +5 -0
- data/.gitlab/cicd-template.yaml +10 -0
- data/.gitlab-ci.yml +147 -0
- data/.travis.yml +56 -20
- data/ADOPTERS.md +5 -0
- data/CHANGELOG.md +1369 -0
- data/CONTRIBUTING.md +16 -5
- data/GOVERNANCE.md +55 -0
- data/Gemfile +5 -0
- data/GithubWorkflow.md +78 -0
- data/LICENSE +202 -0
- data/MAINTAINERS.md +7 -0
- data/README.md +23 -11
- data/Rakefile +48 -2
- data/Vagrantfile +17 -0
- data/appveyor.yml +37 -0
- data/bin/fluent-binlog-reader +7 -0
- data/bin/fluent-ca-generate +6 -0
- data/bin/fluent-plugin-config-format +5 -0
- data/bin/fluent-plugin-generate +5 -0
- data/bin/fluentd +3 -0
- data/code-of-conduct.md +3 -0
- data/example/copy_roundrobin.conf +39 -0
- data/example/counter.conf +18 -0
- data/example/in_dummy_blocks.conf +17 -0
- data/example/in_dummy_with_compression.conf +23 -0
- data/example/in_forward.conf +7 -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 +3 -1
- data/example/in_out_forward.conf +17 -0
- data/example/logevents.conf +25 -0
- data/example/multi_filters.conf +61 -0
- data/example/out_exec_filter.conf +42 -0
- data/example/out_forward.conf +13 -13
- 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_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/secondary_file.conf +42 -0
- data/example/suppress_config_dump.conf +7 -0
- data/example/worker_section.conf +36 -0
- data/fluent.conf +29 -0
- data/fluentd.gemspec +21 -11
- data/lib/fluent/agent.rb +67 -90
- data/lib/fluent/clock.rb +62 -0
- data/lib/fluent/command/binlog_reader.rb +244 -0
- data/lib/fluent/command/ca_generate.rb +181 -0
- data/lib/fluent/command/cat.rb +42 -18
- data/lib/fluent/command/debug.rb +12 -10
- data/lib/fluent/command/fluentd.rb +153 -5
- data/lib/fluent/command/plugin_config_formatter.rb +292 -0
- data/lib/fluent/command/plugin_generator.rb +324 -0
- data/lib/fluent/compat/call_super_mixin.rb +67 -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 +718 -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/configure_proxy.rb +210 -62
- data/lib/fluent/config/dsl.rb +12 -5
- data/lib/fluent/config/element.rb +107 -9
- data/lib/fluent/config/literal_parser.rb +9 -3
- data/lib/fluent/config/parser.rb +4 -4
- data/lib/fluent/config/section.rb +51 -14
- data/lib/fluent/config/types.rb +28 -13
- data/lib/fluent/config/v1_parser.rb +3 -5
- data/lib/fluent/config.rb +23 -20
- data/lib/fluent/configurable.rb +79 -21
- data/lib/fluent/counter/base_socket.rb +46 -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/engine.rb +102 -65
- data/lib/fluent/env.rb +7 -3
- data/lib/fluent/error.rb +30 -0
- data/lib/fluent/event.rb +197 -21
- data/lib/fluent/event_router.rb +93 -10
- data/lib/fluent/filter.rb +2 -50
- data/lib/fluent/formatter.rb +4 -293
- data/lib/fluent/input.rb +2 -32
- data/lib/fluent/label.rb +10 -2
- data/lib/fluent/load.rb +3 -3
- data/lib/fluent/log.rb +348 -81
- data/lib/fluent/match.rb +37 -36
- data/lib/fluent/mixin.rb +12 -176
- data/lib/fluent/msgpack_factory.rb +62 -0
- data/lib/fluent/output.rb +10 -612
- data/lib/fluent/output_chain.rb +23 -0
- data/lib/fluent/parser.rb +4 -800
- data/lib/fluent/plugin/bare_output.rb +63 -0
- data/lib/fluent/plugin/base.rb +192 -0
- data/lib/fluent/plugin/buf_file.rb +128 -174
- data/lib/fluent/plugin/buf_memory.rb +9 -92
- data/lib/fluent/plugin/buffer/chunk.rb +221 -0
- data/lib/fluent/plugin/buffer/file_chunk.rb +383 -0
- data/lib/fluent/plugin/buffer/memory_chunk.rb +90 -0
- data/lib/fluent/plugin/buffer.rb +779 -0
- data/lib/fluent/plugin/compressable.rb +92 -0
- data/lib/fluent/plugin/exec_util.rb +3 -108
- data/lib/fluent/plugin/file_util.rb +4 -34
- data/lib/fluent/plugin/file_wrapper.rb +120 -0
- data/lib/fluent/plugin/filter.rb +93 -0
- data/lib/fluent/plugin/filter_grep.rb +117 -34
- data/lib/fluent/plugin/filter_parser.rb +85 -62
- data/lib/fluent/plugin/filter_record_transformer.rb +27 -39
- data/lib/fluent/plugin/filter_stdout.rb +15 -12
- data/lib/fluent/plugin/formatter.rb +50 -0
- data/lib/fluent/plugin/formatter_csv.rb +52 -0
- data/lib/fluent/plugin/formatter_hash.rb +33 -0
- data/lib/fluent/plugin/formatter_json.rb +55 -0
- data/lib/fluent/plugin/formatter_ltsv.rb +42 -0
- data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
- data/lib/fluent/plugin/formatter_out_file.rb +51 -0
- data/lib/fluent/plugin/formatter_single_value.rb +34 -0
- data/lib/fluent/plugin/formatter_stdout.rb +76 -0
- data/lib/fluent/plugin/formatter_tsv.rb +38 -0
- data/lib/fluent/plugin/in_debug_agent.rb +17 -6
- data/lib/fluent/plugin/in_dummy.rb +47 -20
- data/lib/fluent/plugin/in_exec.rb +55 -123
- data/lib/fluent/plugin/in_forward.rb +299 -216
- data/lib/fluent/plugin/in_gc_stat.rb +14 -36
- data/lib/fluent/plugin/in_http.rb +204 -91
- data/lib/fluent/plugin/in_monitor_agent.rb +186 -258
- data/lib/fluent/plugin/in_object_space.rb +13 -41
- data/lib/fluent/plugin/in_syslog.rb +112 -134
- data/lib/fluent/plugin/in_tail.rb +408 -745
- data/lib/fluent/plugin/in_tcp.rb +66 -9
- data/lib/fluent/plugin/in_udp.rb +60 -11
- data/lib/fluent/plugin/{in_stream.rb → in_unix.rb} +8 -4
- data/lib/fluent/plugin/input.rb +37 -0
- data/lib/fluent/plugin/multi_output.rb +158 -0
- data/lib/fluent/plugin/out_copy.rb +23 -35
- data/lib/fluent/plugin/out_exec.rb +67 -70
- data/lib/fluent/plugin/out_exec_filter.rb +204 -271
- data/lib/fluent/plugin/out_file.rb +267 -73
- data/lib/fluent/plugin/out_forward.rb +854 -325
- data/lib/fluent/plugin/out_null.rb +42 -9
- data/lib/fluent/plugin/out_relabel.rb +9 -5
- data/lib/fluent/plugin/out_roundrobin.rb +18 -37
- data/lib/fluent/plugin/out_secondary_file.rb +133 -0
- data/lib/fluent/plugin/out_stdout.rb +43 -10
- data/lib/fluent/plugin/out_stream.rb +7 -2
- data/lib/fluent/plugin/output.rb +1498 -0
- data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
- data/lib/fluent/plugin/parser.rb +191 -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 +39 -0
- data/lib/fluent/plugin/parser_json.rb +94 -0
- data/lib/fluent/plugin/parser_ltsv.rb +49 -0
- data/lib/fluent/plugin/parser_msgpack.rb +50 -0
- data/lib/fluent/plugin/parser_multiline.rb +106 -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 +142 -0
- data/lib/fluent/plugin/parser_tsv.rb +42 -0
- data/lib/fluent/plugin/socket_util.rb +3 -143
- data/lib/fluent/plugin/storage.rb +84 -0
- data/lib/fluent/plugin/storage_local.rb +164 -0
- data/lib/fluent/plugin/string_util.rb +3 -15
- data/lib/fluent/plugin.rb +122 -121
- data/lib/fluent/plugin_helper/cert_option.rb +178 -0
- data/lib/fluent/plugin_helper/child_process.rb +364 -0
- data/lib/fluent/plugin_helper/compat_parameters.rb +333 -0
- data/lib/fluent/plugin_helper/counter.rb +51 -0
- data/lib/fluent/plugin_helper/event_emitter.rb +93 -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 +81 -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 +87 -0
- data/lib/fluent/plugin_helper/http_server.rb +76 -0
- data/lib/fluent/plugin_helper/inject.rb +151 -0
- data/lib/fluent/plugin_helper/parser.rb +147 -0
- data/lib/fluent/plugin_helper/record_accessor.rb +210 -0
- data/lib/fluent/plugin_helper/retry_state.rb +205 -0
- data/lib/fluent/plugin_helper/server.rb +807 -0
- data/lib/fluent/plugin_helper/socket.rb +250 -0
- data/lib/fluent/plugin_helper/socket_option.rb +80 -0
- data/lib/fluent/plugin_helper/storage.rb +349 -0
- data/lib/fluent/plugin_helper/thread.rb +179 -0
- data/lib/fluent/plugin_helper/timer.rb +92 -0
- data/lib/fluent/plugin_helper.rb +73 -0
- data/lib/fluent/plugin_id.rb +80 -0
- data/lib/fluent/process.rb +3 -489
- data/lib/fluent/registry.rb +52 -10
- data/lib/fluent/root_agent.rb +204 -42
- data/lib/fluent/supervisor.rb +597 -359
- data/lib/fluent/system_config.rb +131 -42
- data/lib/fluent/test/base.rb +6 -54
- data/lib/fluent/test/driver/base.rb +224 -0
- data/lib/fluent/test/driver/base_owned.rb +70 -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/test_event_router.rb +45 -0
- data/lib/fluent/test/filter_test.rb +0 -1
- data/lib/fluent/test/formatter_test.rb +4 -1
- data/lib/fluent/test/helpers.rb +58 -10
- data/lib/fluent/test/input_test.rb +27 -19
- data/lib/fluent/test/log.rb +79 -0
- data/lib/fluent/test/output_test.rb +28 -39
- data/lib/fluent/test/parser_test.rb +3 -1
- data/lib/fluent/test/startup_shutdown.rb +46 -0
- data/lib/fluent/test.rb +33 -1
- data/lib/fluent/time.rb +450 -1
- data/lib/fluent/timezone.rb +27 -3
- data/lib/fluent/{status.rb → unique_id.rb} +15 -24
- data/lib/fluent/version.rb +1 -1
- data/lib/fluent/winsvc.rb +85 -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/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/plugin_config_formatter/param.md-compact.erb +25 -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 +346 -0
- data/test/command/test_ca_generate.rb +70 -0
- data/test/command/test_fluentd.rb +901 -0
- data/test/command/test_plugin_config_formatter.rb +276 -0
- data/test/command/test_plugin_generator.rb +92 -0
- data/test/compat/test_calls_super.rb +166 -0
- data/test/compat/test_parser.rb +92 -0
- data/test/config/test_config_parser.rb +126 -2
- data/test/config/test_configurable.rb +946 -187
- data/test/config/test_configure_proxy.rb +424 -74
- data/test/config/test_dsl.rb +11 -11
- data/test/config/test_element.rb +500 -0
- data/test/config/test_literal_parser.rb +8 -0
- data/test/config/test_plugin_configuration.rb +56 -0
- data/test/config/test_section.rb +79 -7
- data/test/config/test_system_config.rb +122 -35
- data/test/config/test_types.rb +38 -0
- data/test/counter/test_client.rb +559 -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 +89 -6
- data/test/helpers/fuzzy_assert.rb +89 -0
- data/test/plugin/test_bare_output.rb +118 -0
- data/test/plugin/test_base.rb +115 -0
- data/test/plugin/test_buf_file.rb +823 -460
- data/test/plugin/test_buf_memory.rb +32 -194
- data/test/plugin/test_buffer.rb +1233 -0
- data/test/plugin/test_buffer_chunk.rb +198 -0
- data/test/plugin/test_buffer_file_chunk.rb +844 -0
- data/test/plugin/test_buffer_memory_chunk.rb +338 -0
- data/test/plugin/test_compressable.rb +84 -0
- data/test/plugin/test_filter.rb +357 -0
- data/test/plugin/test_filter_grep.rb +540 -29
- data/test/plugin/test_filter_parser.rb +439 -452
- data/test/plugin/test_filter_record_transformer.rb +123 -166
- data/test/plugin/test_filter_stdout.rb +160 -72
- data/test/plugin/test_formatter_csv.rb +111 -0
- data/test/plugin/test_formatter_hash.rb +35 -0
- data/test/plugin/test_formatter_json.rb +51 -0
- data/test/plugin/test_formatter_ltsv.rb +62 -0
- data/test/plugin/test_formatter_msgpack.rb +28 -0
- data/test/plugin/test_formatter_out_file.rb +95 -0
- data/test/plugin/test_formatter_single_value.rb +38 -0
- data/test/plugin/test_formatter_tsv.rb +68 -0
- data/test/plugin/test_in_debug_agent.rb +24 -1
- data/test/plugin/test_in_dummy.rb +111 -18
- data/test/plugin/test_in_exec.rb +200 -113
- data/test/plugin/test_in_forward.rb +990 -387
- data/test/plugin/test_in_gc_stat.rb +10 -8
- data/test/plugin/test_in_http.rb +600 -224
- data/test/plugin/test_in_monitor_agent.rb +690 -0
- data/test/plugin/test_in_object_space.rb +24 -8
- data/test/plugin/test_in_syslog.rb +154 -215
- data/test/plugin/test_in_tail.rb +1006 -707
- data/test/plugin/test_in_tcp.rb +125 -48
- data/test/plugin/test_in_udp.rb +204 -63
- data/test/plugin/{test_in_stream.rb → test_in_unix.rb} +14 -13
- data/test/plugin/test_input.rb +126 -0
- data/test/plugin/test_metadata.rb +89 -0
- data/test/plugin/test_multi_output.rb +180 -0
- data/test/plugin/test_out_copy.rb +117 -112
- data/test/plugin/test_out_exec.rb +258 -53
- data/test/plugin/test_out_exec_filter.rb +538 -115
- data/test/plugin/test_out_file.rb +865 -178
- data/test/plugin/test_out_forward.rb +998 -210
- 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 +36 -29
- data/test/plugin/test_out_secondary_file.rb +458 -0
- data/test/plugin/test_out_stdout.rb +135 -37
- data/test/plugin/test_out_stream.rb +18 -0
- data/test/plugin/test_output.rb +984 -0
- data/test/plugin/test_output_as_buffered.rb +2021 -0
- data/test/plugin/test_output_as_buffered_backup.rb +312 -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 +911 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +874 -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 +359 -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 +103 -0
- data/test/plugin/test_parser_json.rb +138 -0
- data/test/plugin/test_parser_labeled_tsv.rb +145 -0
- data/test/plugin/test_parser_multiline.rb +100 -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 +441 -0
- data/test/plugin/test_parser_tsv.rb +122 -0
- data/test/plugin/test_storage.rb +167 -0
- data/test/plugin/test_storage_local.rb +335 -0
- data/test/plugin_helper/data/cert/cert-key.pem +27 -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/http_server/test_app.rb +65 -0
- data/test/plugin_helper/http_server/test_route.rb +32 -0
- data/test/plugin_helper/test_cert_option.rb +16 -0
- data/test/plugin_helper/test_child_process.rb +794 -0
- data/test/plugin_helper/test_compat_parameters.rb +353 -0
- data/test/plugin_helper/test_event_emitter.rb +51 -0
- data/test/plugin_helper/test_event_loop.rb +52 -0
- data/test/plugin_helper/test_extract.rb +194 -0
- data/test/plugin_helper/test_formatter.rb +255 -0
- data/test/plugin_helper/test_http_server_helper.rb +205 -0
- data/test/plugin_helper/test_inject.rb +519 -0
- data/test/plugin_helper/test_parser.rb +264 -0
- data/test/plugin_helper/test_record_accessor.rb +197 -0
- data/test/plugin_helper/test_retry_state.rb +442 -0
- data/test/plugin_helper/test_server.rb +1714 -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 +132 -0
- data/test/scripts/exec_script.rb +0 -6
- 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/out_test.rb +23 -15
- data/test/scripts/fluent/plugin/out_test2.rb +80 -0
- data/test/test_clock.rb +164 -0
- data/test/test_config.rb +16 -7
- data/test/test_configdsl.rb +2 -2
- data/test/test_event.rb +360 -13
- data/test/test_event_router.rb +108 -11
- data/test/test_event_time.rb +199 -0
- data/test/test_filter.rb +48 -6
- data/test/test_formatter.rb +11 -391
- data/test/test_input.rb +1 -1
- data/test/test_log.rb +591 -31
- data/test/test_mixin.rb +1 -1
- data/test/test_output.rb +121 -185
- data/test/test_plugin.rb +251 -0
- data/test/test_plugin_classes.rb +177 -10
- data/test/test_plugin_helper.rb +81 -0
- data/test/test_plugin_id.rb +101 -0
- data/test/test_process.rb +8 -42
- data/test/test_root_agent.rb +766 -21
- data/test/test_supervisor.rb +481 -0
- data/test/test_test_drivers.rb +135 -0
- data/test/test_time_formatter.rb +282 -0
- data/test/test_time_parser.rb +231 -0
- data/test/test_unique_id.rb +47 -0
- metadata +454 -60
- data/COPYING +0 -14
- data/ChangeLog +0 -666
- data/lib/fluent/buffer.rb +0 -365
- data/lib/fluent/plugin/in_status.rb +0 -76
- data/test/plugin/test_in_status.rb +0 -38
- data/test/test_buffer.rb +0 -624
- data/test/test_parser.rb +0 -1305
data/lib/fluent/output.rb
CHANGED
@@ -14,618 +14,16 @@
|
|
14
14
|
# limitations under the License.
|
15
15
|
#
|
16
16
|
|
17
|
-
require '
|
18
|
-
|
19
|
-
require 'fluent/config'
|
20
|
-
require 'fluent/configurable'
|
21
|
-
require 'fluent/engine'
|
22
|
-
require 'fluent/log'
|
23
|
-
require 'fluent/plugin'
|
24
|
-
require 'fluent/status'
|
25
|
-
require 'fluent/timezone'
|
17
|
+
require 'fluent/compat/output'
|
18
|
+
require 'fluent/output_chain'
|
26
19
|
|
27
20
|
module Fluent
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
def next
|
38
|
-
if @array.length <= @offset
|
39
|
-
return @chain.next
|
40
|
-
end
|
41
|
-
@offset += 1
|
42
|
-
result = @array[@offset-1].emit(@tag, @es, self)
|
43
|
-
result
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
class CopyOutputChain < OutputChain
|
48
|
-
def next
|
49
|
-
if @array.length <= @offset
|
50
|
-
return @chain.next
|
51
|
-
end
|
52
|
-
@offset += 1
|
53
|
-
es = @array.length > @offset ? @es.dup : @es
|
54
|
-
result = @array[@offset-1].emit(@tag, es, self)
|
55
|
-
result
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
class NullOutputChain
|
60
|
-
require 'singleton'
|
61
|
-
include Singleton
|
62
|
-
|
63
|
-
def next
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
|
68
|
-
class Output
|
69
|
-
include Configurable
|
70
|
-
include PluginId
|
71
|
-
include PluginLoggerMixin
|
72
|
-
|
73
|
-
attr_accessor :router
|
74
|
-
|
75
|
-
def initialize
|
76
|
-
super
|
77
|
-
end
|
78
|
-
|
79
|
-
def configure(conf)
|
80
|
-
super
|
81
|
-
|
82
|
-
if label_name = conf['@label']
|
83
|
-
label = Engine.root_agent.find_label(label_name)
|
84
|
-
@router = label.event_router
|
85
|
-
elsif @router.nil?
|
86
|
-
@router = Engine.root_agent.event_router
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
def start
|
91
|
-
end
|
92
|
-
|
93
|
-
def shutdown
|
94
|
-
end
|
95
|
-
|
96
|
-
#def emit(tag, es, chain)
|
97
|
-
#end
|
98
|
-
|
99
|
-
def secondary_init(primary)
|
100
|
-
if primary.class != self.class
|
101
|
-
$log.warn "type of secondary output should be same as primary output", primary: primary.class.to_s, secondary: self.class.to_s
|
102
|
-
end
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
class OutputThread
|
107
|
-
def initialize(output)
|
108
|
-
@output = output
|
109
|
-
@finish = false
|
110
|
-
@next_time = Time.now.to_f + 1.0
|
111
|
-
end
|
112
|
-
|
113
|
-
def configure(conf)
|
114
|
-
end
|
115
|
-
|
116
|
-
def start
|
117
|
-
@mutex = Mutex.new
|
118
|
-
@cond = ConditionVariable.new
|
119
|
-
@thread = Thread.new(&method(:run))
|
120
|
-
end
|
121
|
-
|
122
|
-
def shutdown
|
123
|
-
@finish = true
|
124
|
-
@mutex.synchronize {
|
125
|
-
@cond.signal
|
126
|
-
}
|
127
|
-
Thread.pass
|
128
|
-
@thread.join
|
129
|
-
end
|
130
|
-
|
131
|
-
def submit_flush
|
132
|
-
@mutex.synchronize {
|
133
|
-
@next_time = 0
|
134
|
-
@cond.signal
|
135
|
-
}
|
136
|
-
Thread.pass
|
137
|
-
end
|
138
|
-
|
139
|
-
private
|
140
|
-
def run
|
141
|
-
@mutex.lock
|
142
|
-
begin
|
143
|
-
until @finish
|
144
|
-
time = Time.now.to_f
|
145
|
-
|
146
|
-
if @next_time <= time
|
147
|
-
@mutex.unlock
|
148
|
-
begin
|
149
|
-
@next_time = @output.try_flush
|
150
|
-
ensure
|
151
|
-
@mutex.lock
|
152
|
-
end
|
153
|
-
next_wait = @next_time - Time.now.to_f
|
154
|
-
else
|
155
|
-
next_wait = @next_time - time
|
156
|
-
end
|
157
|
-
|
158
|
-
cond_wait(next_wait) if next_wait > 0
|
159
|
-
end
|
160
|
-
ensure
|
161
|
-
@mutex.unlock
|
162
|
-
end
|
163
|
-
rescue
|
164
|
-
$log.error "error on output thread", error: $!.to_s
|
165
|
-
$log.error_backtrace
|
166
|
-
raise
|
167
|
-
ensure
|
168
|
-
@mutex.synchronize {
|
169
|
-
@output.before_shutdown
|
170
|
-
}
|
171
|
-
end
|
172
|
-
|
173
|
-
def cond_wait(sec)
|
174
|
-
@cond.wait(@mutex, sec)
|
175
|
-
end
|
176
|
-
end
|
177
|
-
|
178
|
-
|
179
|
-
class BufferedOutput < Output
|
180
|
-
def initialize
|
181
|
-
super
|
182
|
-
@next_flush_time = 0
|
183
|
-
@last_retry_time = 0
|
184
|
-
@next_retry_time = 0
|
185
|
-
@num_errors = 0
|
186
|
-
@num_errors_lock = Mutex.new
|
187
|
-
@secondary_limit = 8
|
188
|
-
@emit_count = 0
|
189
|
-
end
|
190
|
-
|
191
|
-
desc 'The buffer type (memory, file)'
|
192
|
-
config_param :buffer_type, :string, default: 'memory'
|
193
|
-
desc 'The interval between data flushes.'
|
194
|
-
config_param :flush_interval, :time, default: 60
|
195
|
-
config_param :try_flush_interval, :float, default: 1
|
196
|
-
desc 'If true, the value of `retry_value` is ignored and there is no limit'
|
197
|
-
config_param :disable_retry_limit, :bool, default: false
|
198
|
-
desc 'The limit on the number of retries before buffered data is discarded'
|
199
|
-
config_param :retry_limit, :integer, default: 17
|
200
|
-
desc 'The initial intervals between write retries.'
|
201
|
-
config_param :retry_wait, :time, default: 1.0
|
202
|
-
desc 'The maximum intervals between write retries.'
|
203
|
-
config_param :max_retry_wait, :time, default: nil
|
204
|
-
desc 'The number of threads to flush the buffer.'
|
205
|
-
config_param :num_threads, :integer, default: 1
|
206
|
-
desc 'The threshold to show slow flush logs'
|
207
|
-
config_param :slow_flush_log_threshold, :float, default: 20.0
|
208
|
-
desc 'The interval between data flushes for queued chunk.'
|
209
|
-
config_param :queued_chunk_flush_interval, :time, default: 1
|
210
|
-
|
211
|
-
def configure(conf)
|
212
|
-
super
|
213
|
-
|
214
|
-
@retry_wait = @retry_wait.to_f # converted to Float for calc_retry_wait
|
215
|
-
@buffer = Plugin.new_buffer(@buffer_type)
|
216
|
-
@buffer.configure(conf)
|
217
|
-
|
218
|
-
if @buffer.respond_to?(:enable_parallel)
|
219
|
-
if @num_threads == 1
|
220
|
-
@buffer.enable_parallel(false)
|
221
|
-
else
|
222
|
-
@buffer.enable_parallel(true)
|
223
|
-
end
|
224
|
-
end
|
225
|
-
|
226
|
-
@writers = (1..@num_threads).map {
|
227
|
-
writer = OutputThread.new(self)
|
228
|
-
writer.configure(conf)
|
229
|
-
writer
|
230
|
-
}
|
231
|
-
|
232
|
-
if sconf = conf.elements.select {|e| e.name == 'secondary' }.first
|
233
|
-
type = sconf['@type'] || conf['@type'] || sconf['type'] || conf['type']
|
234
|
-
@secondary = Plugin.new_output(type)
|
235
|
-
@secondary.router = router
|
236
|
-
@secondary.configure(sconf)
|
237
|
-
|
238
|
-
if secondary_limit = conf['secondary_limit']
|
239
|
-
@secondary_limit = secondary_limit.to_i
|
240
|
-
if @secondary_limit < 0
|
241
|
-
raise ConfigError, "invalid parameter 'secondary_limit #{secondary_limit}'"
|
242
|
-
end
|
243
|
-
end
|
244
|
-
|
245
|
-
@secondary.secondary_init(self)
|
246
|
-
end
|
247
|
-
|
248
|
-
Status.register(self, "queue_size") { @buffer.queue_size }
|
249
|
-
Status.register(self, "emit_count") { @emit_count }
|
250
|
-
end
|
251
|
-
|
252
|
-
def start
|
253
|
-
@next_flush_time = Time.now.to_f + @flush_interval
|
254
|
-
@buffer.start
|
255
|
-
@secondary.start if @secondary
|
256
|
-
@writers.each {|writer| writer.start }
|
257
|
-
@writer_current_position = 0
|
258
|
-
@writers_size = @writers.size
|
259
|
-
end
|
260
|
-
|
261
|
-
def shutdown
|
262
|
-
@writers.each {|writer| writer.shutdown }
|
263
|
-
@secondary.shutdown if @secondary
|
264
|
-
@buffer.shutdown
|
265
|
-
end
|
266
|
-
|
267
|
-
def emit(tag, es, chain, key="")
|
268
|
-
@emit_count += 1
|
269
|
-
data = format_stream(tag, es)
|
270
|
-
if @buffer.emit(key, data, chain)
|
271
|
-
submit_flush
|
272
|
-
end
|
273
|
-
end
|
274
|
-
|
275
|
-
def submit_flush
|
276
|
-
# Without locks: it is rough but enough to select "next" writer selection
|
277
|
-
@writer_current_position = (@writer_current_position + 1) % @writers_size
|
278
|
-
@writers[@writer_current_position].submit_flush
|
279
|
-
end
|
280
|
-
|
281
|
-
def format_stream(tag, es)
|
282
|
-
out = ''
|
283
|
-
es.each {|time,record|
|
284
|
-
out << format(tag, time, record)
|
285
|
-
}
|
286
|
-
out
|
287
|
-
end
|
288
|
-
|
289
|
-
#def format(tag, time, record)
|
290
|
-
#end
|
291
|
-
|
292
|
-
#def write(chunk)
|
293
|
-
#end
|
294
|
-
|
295
|
-
def enqueue_buffer(force = false)
|
296
|
-
@buffer.keys.each {|key|
|
297
|
-
@buffer.push(key)
|
298
|
-
}
|
299
|
-
end
|
300
|
-
|
301
|
-
def try_flush
|
302
|
-
time = Time.now.to_f
|
303
|
-
|
304
|
-
empty = @buffer.queue_size == 0
|
305
|
-
if empty && @next_flush_time < (now = Time.now.to_f)
|
306
|
-
@buffer.synchronize do
|
307
|
-
if @next_flush_time < now
|
308
|
-
enqueue_buffer
|
309
|
-
@next_flush_time = now + @flush_interval
|
310
|
-
empty = @buffer.queue_size == 0
|
311
|
-
end
|
312
|
-
end
|
313
|
-
end
|
314
|
-
if empty
|
315
|
-
return time + @try_flush_interval
|
316
|
-
end
|
317
|
-
|
318
|
-
begin
|
319
|
-
retrying = !@num_errors.zero?
|
320
|
-
|
321
|
-
if retrying
|
322
|
-
@num_errors_lock.synchronize do
|
323
|
-
if retrying = !@num_errors.zero? # re-check in synchronize
|
324
|
-
if @next_retry_time >= time
|
325
|
-
# allow retrying for only one thread
|
326
|
-
return time + @try_flush_interval
|
327
|
-
end
|
328
|
-
# assume next retry failes and
|
329
|
-
# clear them if when it succeeds
|
330
|
-
@last_retry_time = time
|
331
|
-
@num_errors += 1
|
332
|
-
@next_retry_time += calc_retry_wait
|
333
|
-
end
|
334
|
-
end
|
335
|
-
end
|
336
|
-
|
337
|
-
chunk_write_start = Time.now
|
338
|
-
|
339
|
-
if @secondary && !@disable_retry_limit && @num_errors > @retry_limit
|
340
|
-
has_next = flush_secondary(@secondary)
|
341
|
-
else
|
342
|
-
has_next = @buffer.pop(self)
|
343
|
-
end
|
344
|
-
|
345
|
-
elapsed_time = Time.now - chunk_write_start
|
346
|
-
if elapsed_time > @slow_flush_log_threshold
|
347
|
-
$log.warn "buffer flush took longer time than slow_flush_log_threshold:",
|
348
|
-
plugin_id: plugin_id, elapsed_time: elapsed_time, slow_flush_log_threshold: @slow_flush_log_threshold
|
349
|
-
end
|
350
|
-
|
351
|
-
# success
|
352
|
-
if retrying
|
353
|
-
@num_errors = 0
|
354
|
-
# Note: don't notify to other threads to prevent
|
355
|
-
# burst to recovered server
|
356
|
-
$log.warn "retry succeeded.", plugin_id: plugin_id
|
357
|
-
end
|
358
|
-
|
359
|
-
if has_next
|
360
|
-
return Time.now.to_f + @queued_chunk_flush_interval
|
361
|
-
else
|
362
|
-
return time + @try_flush_interval
|
363
|
-
end
|
364
|
-
|
365
|
-
rescue => e
|
366
|
-
if retrying
|
367
|
-
error_count = @num_errors
|
368
|
-
else
|
369
|
-
# first error
|
370
|
-
error_count = 0
|
371
|
-
@num_errors_lock.synchronize do
|
372
|
-
if @num_errors.zero?
|
373
|
-
@last_retry_time = time
|
374
|
-
@num_errors += 1
|
375
|
-
@next_retry_time = time + calc_retry_wait
|
376
|
-
end
|
377
|
-
end
|
378
|
-
end
|
379
|
-
|
380
|
-
if @disable_retry_limit || error_count < @retry_limit
|
381
|
-
$log.warn "temporarily failed to flush the buffer.", next_retry: Time.at(@next_retry_time), error_class: e.class.to_s, error: e.to_s, plugin_id: plugin_id
|
382
|
-
$log.warn_backtrace e.backtrace
|
383
|
-
|
384
|
-
elsif @secondary
|
385
|
-
if error_count == @retry_limit
|
386
|
-
$log.warn "failed to flush the buffer.", error_class: e.class.to_s, error: e.to_s, plugin_id: plugin_id
|
387
|
-
$log.warn "retry count exceededs limit. falling back to secondary output."
|
388
|
-
$log.warn_backtrace e.backtrace
|
389
|
-
retry # retry immediately
|
390
|
-
elsif error_count <= @retry_limit + @secondary_limit
|
391
|
-
$log.warn "failed to flush the buffer, next retry will be with secondary output.", next_retry: Time.at(@next_retry_time), error_class: e.class.to_s, error: e.to_s, plugin_id: plugin_id
|
392
|
-
$log.warn_backtrace e.backtrace
|
393
|
-
else
|
394
|
-
$log.warn "failed to flush the buffer.", error_class: e.class, error: e.to_s, plugin_id: plugin_id
|
395
|
-
$log.warn "secondary retry count exceededs limit."
|
396
|
-
$log.warn_backtrace e.backtrace
|
397
|
-
write_abort
|
398
|
-
@num_errors = 0
|
399
|
-
end
|
400
|
-
|
401
|
-
else
|
402
|
-
$log.warn "failed to flush the buffer.", error_class: e.class.to_s, error: e.to_s, plugin_id: plugin_id
|
403
|
-
$log.warn "retry count exceededs limit."
|
404
|
-
$log.warn_backtrace e.backtrace
|
405
|
-
write_abort
|
406
|
-
@num_errors = 0
|
407
|
-
end
|
408
|
-
|
409
|
-
return @next_retry_time
|
410
|
-
end
|
411
|
-
end
|
412
|
-
|
413
|
-
def force_flush
|
414
|
-
@num_errors_lock.synchronize do
|
415
|
-
@next_retry_time = Time.now.to_f - 1
|
416
|
-
end
|
417
|
-
enqueue_buffer(true)
|
418
|
-
submit_flush
|
419
|
-
end
|
420
|
-
|
421
|
-
def before_shutdown
|
422
|
-
begin
|
423
|
-
@buffer.before_shutdown(self)
|
424
|
-
rescue
|
425
|
-
$log.warn "before_shutdown failed", error: $!.to_s
|
426
|
-
$log.warn_backtrace
|
427
|
-
end
|
428
|
-
end
|
429
|
-
|
430
|
-
def calc_retry_wait
|
431
|
-
# TODO retry pattern
|
432
|
-
wait = if @disable_retry_limit || @num_errors <= @retry_limit
|
433
|
-
@retry_wait * (2 ** (@num_errors - 1))
|
434
|
-
else
|
435
|
-
# secondary retry
|
436
|
-
@retry_wait * (2 ** (@num_errors - 2 - @retry_limit))
|
437
|
-
end
|
438
|
-
retry_wait = wait.finite? ? wait + (rand * (wait / 4.0) - (wait / 8.0)) : wait
|
439
|
-
@max_retry_wait ? [retry_wait, @max_retry_wait].min : retry_wait
|
440
|
-
end
|
441
|
-
|
442
|
-
def write_abort
|
443
|
-
$log.error "throwing away old logs."
|
444
|
-
begin
|
445
|
-
@buffer.clear!
|
446
|
-
rescue
|
447
|
-
$log.error "unexpected error while aborting", error: $!.to_s
|
448
|
-
$log.error_backtrace
|
449
|
-
end
|
450
|
-
end
|
451
|
-
|
452
|
-
def flush_secondary(secondary)
|
453
|
-
@buffer.pop(secondary)
|
454
|
-
end
|
455
|
-
end
|
456
|
-
|
457
|
-
|
458
|
-
class ObjectBufferedOutput < BufferedOutput
|
459
|
-
def initialize
|
460
|
-
super
|
461
|
-
end
|
462
|
-
|
463
|
-
def emit(tag, es, chain)
|
464
|
-
@emit_count += 1
|
465
|
-
data = es.to_msgpack_stream
|
466
|
-
key = tag
|
467
|
-
if @buffer.emit(key, data, chain)
|
468
|
-
submit_flush
|
469
|
-
end
|
470
|
-
end
|
471
|
-
|
472
|
-
module BufferedEventStreamMixin
|
473
|
-
include Enumerable
|
474
|
-
|
475
|
-
def repeatable?
|
476
|
-
true
|
477
|
-
end
|
478
|
-
|
479
|
-
def each(&block)
|
480
|
-
msgpack_each(&block)
|
481
|
-
end
|
482
|
-
|
483
|
-
def to_msgpack_stream
|
484
|
-
read
|
485
|
-
end
|
486
|
-
end
|
487
|
-
|
488
|
-
def write(chunk)
|
489
|
-
chunk.extend(BufferedEventStreamMixin)
|
490
|
-
write_objects(chunk.key, chunk)
|
491
|
-
end
|
492
|
-
end
|
493
|
-
|
494
|
-
|
495
|
-
class TimeSlicedOutput < BufferedOutput
|
496
|
-
require 'fluent/timezone'
|
497
|
-
|
498
|
-
def initialize
|
499
|
-
super
|
500
|
-
@localtime = true
|
501
|
-
#@ignore_old = false # TODO
|
502
|
-
end
|
503
|
-
|
504
|
-
desc 'The time format used as part of the file name.'
|
505
|
-
config_param :time_slice_format, :string, default: '%Y%m%d'
|
506
|
-
desc 'The amount of time Fluentd will wait for old logs to arrive.'
|
507
|
-
config_param :time_slice_wait, :time, default: 10*60
|
508
|
-
desc 'Parse the time value in the specified timezone'
|
509
|
-
config_param :timezone, :string, default: nil
|
510
|
-
config_set_default :buffer_type, 'file' # overwrite default buffer_type
|
511
|
-
config_set_default :buffer_chunk_limit, 256*1024*1024 # overwrite default buffer_chunk_limit
|
512
|
-
config_set_default :flush_interval, nil
|
513
|
-
config_set_default :slow_flush_log_threshold, 40.0
|
514
|
-
|
515
|
-
attr_accessor :localtime
|
516
|
-
attr_reader :time_slicer # for test
|
517
|
-
|
518
|
-
def configure(conf)
|
519
|
-
super
|
520
|
-
|
521
|
-
if conf['utc']
|
522
|
-
@localtime = false
|
523
|
-
elsif conf['localtime']
|
524
|
-
@localtime = true
|
525
|
-
end
|
526
|
-
|
527
|
-
if conf['timezone']
|
528
|
-
@timezone = conf['timezone']
|
529
|
-
Fluent::Timezone.validate!(@timezone)
|
530
|
-
end
|
531
|
-
|
532
|
-
if @timezone
|
533
|
-
@time_slicer = Timezone.formatter(@timezone, @time_slice_format)
|
534
|
-
elsif @localtime
|
535
|
-
@time_slicer = Proc.new {|time|
|
536
|
-
Time.at(time).strftime(@time_slice_format)
|
537
|
-
}
|
538
|
-
else
|
539
|
-
@time_slicer = Proc.new {|time|
|
540
|
-
Time.at(time).utc.strftime(@time_slice_format)
|
541
|
-
}
|
542
|
-
end
|
543
|
-
|
544
|
-
@time_slice_cache_interval = time_slice_cache_interval
|
545
|
-
@before_tc = nil
|
546
|
-
@before_key = nil
|
547
|
-
|
548
|
-
if @flush_interval
|
549
|
-
if conf['time_slice_wait']
|
550
|
-
$log.warn "time_slice_wait is ignored if flush_interval is specified: #{conf}"
|
551
|
-
end
|
552
|
-
@enqueue_buffer_proc = Proc.new do
|
553
|
-
@buffer.keys.each {|key|
|
554
|
-
@buffer.push(key)
|
555
|
-
}
|
556
|
-
end
|
557
|
-
|
558
|
-
else
|
559
|
-
@flush_interval = [60, @time_slice_cache_interval].min
|
560
|
-
@enqueue_buffer_proc = Proc.new do
|
561
|
-
nowslice = @time_slicer.call(Engine.now - @time_slice_wait)
|
562
|
-
@buffer.keys.each {|key|
|
563
|
-
if key < nowslice
|
564
|
-
@buffer.push(key)
|
565
|
-
end
|
566
|
-
}
|
567
|
-
end
|
568
|
-
end
|
569
|
-
end
|
570
|
-
|
571
|
-
def emit(tag, es, chain)
|
572
|
-
@emit_count += 1
|
573
|
-
formatted_data = {}
|
574
|
-
es.each {|time,record|
|
575
|
-
begin
|
576
|
-
tc = time / @time_slice_cache_interval
|
577
|
-
if @before_tc == tc
|
578
|
-
key = @before_key
|
579
|
-
else
|
580
|
-
@before_tc = tc
|
581
|
-
key = @time_slicer.call(time)
|
582
|
-
@before_key = key
|
583
|
-
end
|
584
|
-
rescue => e
|
585
|
-
@router.emit_error_event(tag, Engine.now, {'time' => time, 'record' => record}, e)
|
586
|
-
next
|
587
|
-
end
|
588
|
-
|
589
|
-
formatted_data[key] ||= ''
|
590
|
-
formatted_data[key] << format(tag, time, record)
|
591
|
-
}
|
592
|
-
formatted_data.each { |key, data|
|
593
|
-
if @buffer.emit(key, data, chain)
|
594
|
-
submit_flush
|
595
|
-
end
|
596
|
-
}
|
597
|
-
end
|
598
|
-
|
599
|
-
def enqueue_buffer(force = false)
|
600
|
-
if force
|
601
|
-
@buffer.keys.each {|key|
|
602
|
-
@buffer.push(key)
|
603
|
-
}
|
604
|
-
else
|
605
|
-
@enqueue_buffer_proc.call
|
606
|
-
end
|
607
|
-
end
|
608
|
-
|
609
|
-
#def format(tag, event)
|
610
|
-
#end
|
611
|
-
|
612
|
-
private
|
613
|
-
def time_slice_cache_interval
|
614
|
-
if @time_slicer.call(0) != @time_slicer.call(60-1)
|
615
|
-
return 1
|
616
|
-
elsif @time_slicer.call(0) != @time_slicer.call(60*60-1)
|
617
|
-
return 30
|
618
|
-
elsif @time_slicer.call(0) != @time_slicer.call(24*60*60-1)
|
619
|
-
return 60*30
|
620
|
-
else
|
621
|
-
return 24*60*30
|
622
|
-
end
|
623
|
-
end
|
624
|
-
end
|
625
|
-
|
626
|
-
|
627
|
-
class MultiOutput < Output
|
628
|
-
#def outputs
|
629
|
-
#end
|
630
|
-
end
|
21
|
+
Output = Fluent::Compat::Output
|
22
|
+
BufferedOutput = Fluent::Compat::BufferedOutput
|
23
|
+
ObjectBufferedOutput = Fluent::Compat::ObjectBufferedOutput
|
24
|
+
TimeSlicedOutput = Fluent::Compat::TimeSlicedOutput
|
25
|
+
MultiOutput = Fluent::Compat::MultiOutput
|
26
|
+
|
27
|
+
# Some input plugins refer BufferQueueLimitError for throttling
|
28
|
+
BufferQueueLimitError = Fluent::Compat::BufferQueueLimitError
|
631
29
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# Fluentd
|
3
|
+
#
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
+
# you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
#
|
16
|
+
|
17
|
+
require 'fluent/compat/output_chain'
|
18
|
+
|
19
|
+
module Fluent
|
20
|
+
OutputChain = Fluent::Compat::OutputChain
|
21
|
+
CopyOutputChain = Fluent::Compat::CopyOutputChain
|
22
|
+
NullOutputChain = Fluent::Compat::NullOutputChain
|
23
|
+
end
|