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
@@ -0,0 +1,542 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/plugin_helper/storage'
|
3
|
+
require 'fluent/plugin/base'
|
4
|
+
|
5
|
+
class ExampleStorage < Fluent::Plugin::Storage
|
6
|
+
Fluent::Plugin.register_storage('example', self)
|
7
|
+
|
8
|
+
attr_reader :data, :saved, :load_times, :save_times
|
9
|
+
|
10
|
+
def initialize
|
11
|
+
super
|
12
|
+
@data = {}
|
13
|
+
@saved = {}
|
14
|
+
@load_times = 0
|
15
|
+
@save_times = 0
|
16
|
+
end
|
17
|
+
def load
|
18
|
+
@data ||= {}
|
19
|
+
@load_times += 1
|
20
|
+
end
|
21
|
+
def save
|
22
|
+
@saved = @data.dup
|
23
|
+
@save_times += 1
|
24
|
+
end
|
25
|
+
def get(key)
|
26
|
+
@data[key]
|
27
|
+
end
|
28
|
+
def fetch(key, defval)
|
29
|
+
@data.fetch(key, defval)
|
30
|
+
end
|
31
|
+
def put(key, value)
|
32
|
+
@data[key] = value
|
33
|
+
end
|
34
|
+
def delete(key)
|
35
|
+
@data.delete(key)
|
36
|
+
end
|
37
|
+
def update(key, &block)
|
38
|
+
@data[key] = block.call(@data[key])
|
39
|
+
end
|
40
|
+
def close
|
41
|
+
@data = {}
|
42
|
+
super
|
43
|
+
end
|
44
|
+
def terminate
|
45
|
+
@saved = {}
|
46
|
+
@load_times = @save_times = 0
|
47
|
+
super
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
class Example2Storage < ExampleStorage
|
52
|
+
Fluent::Plugin.register_storage('ex2', self)
|
53
|
+
config_param :dummy_path, :string, default: 'dummy'
|
54
|
+
end
|
55
|
+
class Example3Storage < ExampleStorage
|
56
|
+
Fluent::Plugin.register_storage('ex3', self)
|
57
|
+
def synchronized?
|
58
|
+
true
|
59
|
+
end
|
60
|
+
end
|
61
|
+
class Example4Storage < ExampleStorage
|
62
|
+
Fluent::Plugin.register_storage('ex4', self)
|
63
|
+
def persistent_always?
|
64
|
+
true
|
65
|
+
end
|
66
|
+
def synchronized?
|
67
|
+
true
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
class StorageHelperTest < Test::Unit::TestCase
|
72
|
+
class Dummy < Fluent::Plugin::TestBase
|
73
|
+
helpers :storage
|
74
|
+
end
|
75
|
+
|
76
|
+
class Dummy2 < Fluent::Plugin::TestBase
|
77
|
+
helpers :storage
|
78
|
+
config_section :storage do
|
79
|
+
config_set_default :@type, 'ex2'
|
80
|
+
config_set_default :dummy_path, '/tmp/yay'
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
setup do
|
85
|
+
@d = nil
|
86
|
+
end
|
87
|
+
|
88
|
+
teardown do
|
89
|
+
if @d
|
90
|
+
@d.stop unless @d.stopped?
|
91
|
+
@d.shutdown unless @d.shutdown?
|
92
|
+
@d.close unless @d.closed?
|
93
|
+
@d.terminate unless @d.terminated?
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
test 'can be initialized without any storages at first' do
|
98
|
+
d = Dummy.new
|
99
|
+
assert_equal 0, d._storages.size
|
100
|
+
end
|
101
|
+
|
102
|
+
test 'can be configured with hash' do
|
103
|
+
d = Dummy.new
|
104
|
+
d.configure(config_element())
|
105
|
+
conf = { '@type' => 'example' }
|
106
|
+
assert_nothing_raised do
|
107
|
+
d.storage_create(conf: conf)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
test 'can override default configuration parameters, but not overwrite whole definition' do
|
112
|
+
d = Dummy.new
|
113
|
+
d.configure(config_element())
|
114
|
+
assert_equal 1, d.storage_configs.size
|
115
|
+
assert_equal 'local', d.storage_configs.first[:@type]
|
116
|
+
|
117
|
+
d = Dummy2.new
|
118
|
+
d.configure(config_element('ROOT', '', {}, [config_element('storage', '', {}, [])]))
|
119
|
+
assert_raise NoMethodError do
|
120
|
+
d.storage
|
121
|
+
end
|
122
|
+
assert_equal 1, d.storage_configs.size
|
123
|
+
assert_equal 'ex2', d.storage_configs.first[:@type]
|
124
|
+
assert_equal '/tmp/yay', d.storage_configs.first.dummy_path
|
125
|
+
end
|
126
|
+
|
127
|
+
test 'creates instance of type specified by conf, or default_type if @type is missing in conf' do
|
128
|
+
d = Dummy2.new
|
129
|
+
d.configure(config_element())
|
130
|
+
i = d.storage_create(conf: config_element('format', '', {'@type' => 'example'}), default_type: 'ex2')
|
131
|
+
assert{ i.is_a?(Fluent::PluginHelper::Storage::SynchronizeWrapper) && i.instance_eval{ @storage }.is_a?(ExampleStorage) }
|
132
|
+
|
133
|
+
d = Dummy2.new
|
134
|
+
d.configure(config_element())
|
135
|
+
i = d.storage_create(conf: nil, default_type: 'ex2')
|
136
|
+
assert{ i.is_a?(Fluent::PluginHelper::Storage::SynchronizeWrapper) && i.instance_eval{ @storage }.is_a?(Example2Storage) }
|
137
|
+
end
|
138
|
+
|
139
|
+
test 'raises config error if config section is specified, but @type is not specified' do
|
140
|
+
d = Dummy2.new
|
141
|
+
d.configure(config_element())
|
142
|
+
assert_raise Fluent::ConfigError.new("@type is required in <storage>") do
|
143
|
+
d.storage_create(conf: config_element('storage', 'foo', {}), default_type: 'ex2')
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
test 'raises config error if config argument has invalid characters' do
|
148
|
+
d = Dummy.new
|
149
|
+
assert_raise Fluent::ConfigError.new("Argument in <storage ARG> uses invalid characters: 'yaa y'") do
|
150
|
+
d.configure(config_element('root', '', {}, [config_element('storage', 'yaa y', {'@type' => 'local'})]))
|
151
|
+
end
|
152
|
+
d.configure(config_element())
|
153
|
+
assert_raise Fluent::ConfigError.new("Argument in <storage ARG> uses invalid characters: 'a,b'") do
|
154
|
+
d.storage_create(usage: 'a,b', type: 'local')
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
test 'can be configured without storage sections' do
|
159
|
+
d = Dummy.new
|
160
|
+
assert_nothing_raised do
|
161
|
+
d.configure(config_element())
|
162
|
+
end
|
163
|
+
assert_equal 1, d._storages.size
|
164
|
+
end
|
165
|
+
|
166
|
+
test 'can be configured with a storage section' do
|
167
|
+
d = Dummy.new
|
168
|
+
conf = config_element('ROOT', '', {}, [
|
169
|
+
config_element('storage', '', {'@type' => 'example'})
|
170
|
+
])
|
171
|
+
assert_nothing_raised do
|
172
|
+
d.configure(conf)
|
173
|
+
end
|
174
|
+
assert_equal 1, d._storages.size
|
175
|
+
assert{ d._storages.values.all?{ |s| !s.running } }
|
176
|
+
end
|
177
|
+
|
178
|
+
test 'can be configured with 2 or more storage sections with different usages with each other' do
|
179
|
+
d = Dummy.new
|
180
|
+
conf = config_element('ROOT', '', {}, [
|
181
|
+
config_element('storage', 'default', {'@type' => 'example'}),
|
182
|
+
config_element('storage', 'extra', {'@type' => 'ex2', 'dummy_path' => 'v'}),
|
183
|
+
])
|
184
|
+
assert_nothing_raised do
|
185
|
+
d.configure(conf)
|
186
|
+
end
|
187
|
+
assert_equal 2, d._storages.size
|
188
|
+
assert{ d._storages.values.all?{ |s| !s.running } }
|
189
|
+
end
|
190
|
+
|
191
|
+
test 'cannot be configured with 2 storage sections with same usage' do
|
192
|
+
d = Dummy.new
|
193
|
+
conf = config_element('ROOT', '', {}, [
|
194
|
+
config_element('storage', 'default', {'@type' => 'example'}),
|
195
|
+
config_element('storage', 'extra', {'@type' => 'ex2', 'dummy_path' => 'v'}),
|
196
|
+
config_element('storage', 'extra', {'@type' => 'ex2', 'dummy_path' => 'v2'}),
|
197
|
+
])
|
198
|
+
assert_raises Fluent::ConfigError do
|
199
|
+
d.configure(conf)
|
200
|
+
end
|
201
|
+
end
|
202
|
+
|
203
|
+
test 'creates a storage plugin instance which is already configured without usage' do
|
204
|
+
@d = d = Dummy.new
|
205
|
+
conf = config_element('ROOT', '', {}, [
|
206
|
+
config_element('storage', '', {'@type' => 'example'})
|
207
|
+
])
|
208
|
+
d.configure(conf)
|
209
|
+
d.start
|
210
|
+
|
211
|
+
s = d.storage_create
|
212
|
+
assert{ s.implementation.is_a? ExampleStorage }
|
213
|
+
end
|
214
|
+
|
215
|
+
test 'creates a storage plugin instance which is already configured with usage' do
|
216
|
+
@d = d = Dummy.new
|
217
|
+
conf = config_element('ROOT', '', {}, [
|
218
|
+
config_element('storage', 'mydata', {'@type' => 'example'})
|
219
|
+
])
|
220
|
+
d.configure(conf)
|
221
|
+
d.start
|
222
|
+
|
223
|
+
s = d.storage_create(usage: 'mydata')
|
224
|
+
assert{ s.implementation.is_a? ExampleStorage }
|
225
|
+
end
|
226
|
+
|
227
|
+
test 'creates a storage plugin without configurations' do
|
228
|
+
@d = d = Dummy.new
|
229
|
+
d.configure(config_element())
|
230
|
+
d.start
|
231
|
+
|
232
|
+
s = d.storage_create(usage: 'mydata', type: 'example', conf: config_element('storage', 'mydata'))
|
233
|
+
assert{ s.implementation.is_a? ExampleStorage }
|
234
|
+
end
|
235
|
+
|
236
|
+
test 'creates 2 or more storage plugin instances' do
|
237
|
+
@d = d = Dummy.new
|
238
|
+
conf = config_element('ROOT', '', {}, [
|
239
|
+
config_element('storage', 'mydata', {'@type' => 'example'}),
|
240
|
+
config_element('storage', 'secret', {'@type' => 'ex2', 'dummy_path' => 'yay!'}),
|
241
|
+
])
|
242
|
+
d.configure(conf)
|
243
|
+
d.start
|
244
|
+
|
245
|
+
s1 = d.storage_create(usage: 'mydata')
|
246
|
+
s2 = d.storage_create(usage: 'secret')
|
247
|
+
assert{ s1.implementation.is_a? ExampleStorage }
|
248
|
+
assert{ s2.implementation.is_a? Example2Storage }
|
249
|
+
assert_equal 'yay!', s2.implementation.dummy_path
|
250
|
+
end
|
251
|
+
|
252
|
+
test 'creates wrapped instances for non-synchronized plugin in default' do # and check operations
|
253
|
+
@d = d = Dummy.new
|
254
|
+
conf = config_element('ROOT', '', {}, [
|
255
|
+
config_element('storage', 'mydata', {'@type' => 'example'})
|
256
|
+
])
|
257
|
+
d.configure(conf)
|
258
|
+
d.start
|
259
|
+
|
260
|
+
s = d.storage_create(usage: 'mydata')
|
261
|
+
assert !s.implementation.synchronized?
|
262
|
+
assert{ s.is_a? Fluent::PluginHelper::Storage::SynchronizeWrapper }
|
263
|
+
assert s.synchronized?
|
264
|
+
assert s.autosave
|
265
|
+
assert s.save_at_shutdown
|
266
|
+
|
267
|
+
assert_nil s.get('key')
|
268
|
+
assert_equal 'value', s.put('key', 'value')
|
269
|
+
assert_equal 'value', s.fetch('key', 'v1')
|
270
|
+
assert_equal 'v2', s.update('key'){|v| v[0] + '2' }
|
271
|
+
assert_equal 'v2', s.get('key')
|
272
|
+
assert_equal 'v2', s.delete('key')
|
273
|
+
end
|
274
|
+
|
275
|
+
test 'creates wrapped instances for non-persistent plugins when configured as persistent' do # and check operations
|
276
|
+
@d = d = Dummy.new
|
277
|
+
conf = config_element('ROOT', '', {}, [
|
278
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'persistent' => 'true'})
|
279
|
+
])
|
280
|
+
d.configure(conf)
|
281
|
+
d.start
|
282
|
+
|
283
|
+
s = d.storage_create(usage: 'mydata')
|
284
|
+
assert !s.implementation.persistent_always?
|
285
|
+
assert{ s.is_a? Fluent::PluginHelper::Storage::PersistentWrapper }
|
286
|
+
assert s.persistent
|
287
|
+
assert s.persistent_always?
|
288
|
+
assert s.synchronized?
|
289
|
+
assert !s.autosave
|
290
|
+
assert s.save_at_shutdown
|
291
|
+
|
292
|
+
assert_nil s.get('key')
|
293
|
+
assert_equal 'value', s.put('key', 'value')
|
294
|
+
assert_equal 'value', s.fetch('key', 'v1')
|
295
|
+
assert_equal 'v2', s.update('key'){|v| v[0] + '2' }
|
296
|
+
assert_equal 'v2', s.get('key')
|
297
|
+
assert_equal 'v2', s.delete('key')
|
298
|
+
end
|
299
|
+
|
300
|
+
test 'creates bare instances for synchronized plugin in default' do
|
301
|
+
@d = d = Dummy.new
|
302
|
+
conf = config_element('ROOT', '', {}, [
|
303
|
+
config_element('storage', 'mydata', {'@type' => 'ex3'})
|
304
|
+
])
|
305
|
+
d.configure(conf)
|
306
|
+
d.start
|
307
|
+
|
308
|
+
s = d.storage_create(usage: 'mydata')
|
309
|
+
assert s.implementation.synchronized?
|
310
|
+
assert{ s.is_a? Example3Storage }
|
311
|
+
assert s.synchronized?
|
312
|
+
end
|
313
|
+
|
314
|
+
test 'creates bare instances for persistent-always plugin when configured as persistent' do
|
315
|
+
@d = d = Dummy.new
|
316
|
+
conf = config_element('ROOT', '', {}, [
|
317
|
+
config_element('storage', 'mydata', {'@type' => 'ex4', 'persistent' => 'true'})
|
318
|
+
])
|
319
|
+
d.configure(conf)
|
320
|
+
d.start
|
321
|
+
|
322
|
+
s = d.storage_create(usage: 'mydata')
|
323
|
+
assert s.implementation.persistent_always?
|
324
|
+
assert{ s.is_a? Example4Storage }
|
325
|
+
assert s.persistent
|
326
|
+
assert s.persistent_always?
|
327
|
+
assert s.synchronized?
|
328
|
+
end
|
329
|
+
|
330
|
+
test 'does not execute timer if autosave is not specified' do
|
331
|
+
@d = d = Dummy.new
|
332
|
+
conf = config_element('ROOT', '', {}, [
|
333
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'autosave' => 'false'})
|
334
|
+
])
|
335
|
+
d.configure(conf)
|
336
|
+
d.start
|
337
|
+
|
338
|
+
d.storage_create(usage: 'mydata')
|
339
|
+
assert_equal 0, d._timers.size
|
340
|
+
end
|
341
|
+
|
342
|
+
test 'executes timer if autosave is specified and plugin is not persistent' do
|
343
|
+
@d = d = Dummy.new
|
344
|
+
conf = config_element('ROOT', '', {}, [
|
345
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'autosave_interval' => '1s', 'persistent' => 'false'})
|
346
|
+
])
|
347
|
+
d.configure(conf)
|
348
|
+
d.start
|
349
|
+
|
350
|
+
d.storage_create(usage: 'mydata')
|
351
|
+
assert_equal 1, d._timers.size
|
352
|
+
end
|
353
|
+
|
354
|
+
test 'executes timer for autosave, which calls #save periodically' do
|
355
|
+
@d = d = Dummy.new
|
356
|
+
conf = config_element('ROOT', '', {}, [
|
357
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'autosave_interval' => '1s', 'persistent' => 'false'})
|
358
|
+
])
|
359
|
+
d.configure(conf)
|
360
|
+
d.start
|
361
|
+
|
362
|
+
s = d.storage_create(usage: 'mydata')
|
363
|
+
assert_equal 1, d._timers.size
|
364
|
+
timeout = Time.now + 3
|
365
|
+
while Time.now < timeout
|
366
|
+
s.put('k', 'v')
|
367
|
+
sleep 0.2
|
368
|
+
end
|
369
|
+
|
370
|
+
d.stop
|
371
|
+
assert{ s.implementation.save_times > 0 }
|
372
|
+
end
|
373
|
+
|
374
|
+
test 'saves data for each operations if plugin storage is configured as persistent, and wrapped' do
|
375
|
+
@d = d = Dummy.new
|
376
|
+
conf = config_element('ROOT', '', {}, [
|
377
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'persistent' => 'true'})
|
378
|
+
])
|
379
|
+
d.configure(conf)
|
380
|
+
d.start
|
381
|
+
s = d.storage_create(usage: 'mydata')
|
382
|
+
assert_equal 1, s.implementation.load_times
|
383
|
+
assert_equal 0, s.implementation.save_times
|
384
|
+
|
385
|
+
s.get('k1')
|
386
|
+
assert_equal 2, s.implementation.load_times
|
387
|
+
assert_equal 0, s.implementation.save_times
|
388
|
+
|
389
|
+
s.put('k1', 'v1')
|
390
|
+
assert_equal 3, s.implementation.load_times
|
391
|
+
assert_equal 1, s.implementation.save_times
|
392
|
+
|
393
|
+
s.fetch('k2', 'v2')
|
394
|
+
assert_equal 4, s.implementation.load_times
|
395
|
+
assert_equal 1, s.implementation.save_times
|
396
|
+
|
397
|
+
s.delete('k1')
|
398
|
+
assert_equal 5, s.implementation.load_times
|
399
|
+
assert_equal 2, s.implementation.save_times
|
400
|
+
end
|
401
|
+
|
402
|
+
test 'stops timer for autosave by #stop, calls #save by #shutdown if save_at_shutdown is specified' do
|
403
|
+
@d = d = Dummy.new
|
404
|
+
conf = config_element('ROOT', '', {}, [
|
405
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'save_at_shutdown' => 'true'})
|
406
|
+
])
|
407
|
+
d.configure(conf)
|
408
|
+
|
409
|
+
assert !d.timer_running?
|
410
|
+
|
411
|
+
d.start
|
412
|
+
|
413
|
+
assert d.timer_running?
|
414
|
+
|
415
|
+
s = d.storage_create(usage: 'mydata')
|
416
|
+
assert s.autosave
|
417
|
+
assert_equal 1, d._timers.size
|
418
|
+
|
419
|
+
d.stop
|
420
|
+
|
421
|
+
assert !d.timer_running?
|
422
|
+
|
423
|
+
assert_equal 1, s.implementation.load_times
|
424
|
+
assert_equal 0, s.implementation.save_times
|
425
|
+
|
426
|
+
d.before_shutdown
|
427
|
+
|
428
|
+
d.shutdown
|
429
|
+
|
430
|
+
assert_equal 1, s.implementation.load_times
|
431
|
+
assert_equal 1, s.implementation.save_times
|
432
|
+
end
|
433
|
+
|
434
|
+
test 'calls #close and #terminate for all plugin instances by #close/#shutdown' do
|
435
|
+
@d = d = Dummy.new
|
436
|
+
conf = config_element('ROOT', '', {}, [
|
437
|
+
config_element('storage', 'mydata', {'@type' => 'example', 'autosave' => 'false', 'save_at_shutdown' => 'true'})
|
438
|
+
])
|
439
|
+
d.configure(conf)
|
440
|
+
d.start
|
441
|
+
s = d.storage_create(usage: 'mydata')
|
442
|
+
|
443
|
+
s.put('k1', 'v1')
|
444
|
+
s.put('k2', 2)
|
445
|
+
s.put('k3', true)
|
446
|
+
|
447
|
+
d.stop
|
448
|
+
|
449
|
+
assert_equal 3, s.implementation.data.size
|
450
|
+
assert_equal 0, s.implementation.saved.size
|
451
|
+
|
452
|
+
d.shutdown
|
453
|
+
|
454
|
+
assert_equal 3, s.implementation.data.size
|
455
|
+
assert_equal 3, s.implementation.saved.size
|
456
|
+
|
457
|
+
d.close
|
458
|
+
|
459
|
+
assert_equal 0, s.implementation.data.size
|
460
|
+
assert_equal 3, s.implementation.saved.size
|
461
|
+
|
462
|
+
d.shutdown
|
463
|
+
|
464
|
+
assert_equal 0, s.implementation.data.size
|
465
|
+
assert_equal 0, s.implementation.saved.size
|
466
|
+
end
|
467
|
+
|
468
|
+
test 'calls lifecycle methods for all plugin instances via owner plugin' do
|
469
|
+
@d = d = Dummy.new
|
470
|
+
conf = config_element('ROOT', '', {}, [ config_element('storage', '', {'@type' => 'example'}), config_element('storage', 'e2', {'@type' => 'example'}) ])
|
471
|
+
d.configure(conf)
|
472
|
+
d.start
|
473
|
+
|
474
|
+
i1 = d.storage_create(usage: '')
|
475
|
+
i2 = d.storage_create(usage: 'e2')
|
476
|
+
i3 = d.storage_create(usage: 'e3', type: 'ex2')
|
477
|
+
|
478
|
+
assert i1.started?
|
479
|
+
assert i2.started?
|
480
|
+
assert i3.started?
|
481
|
+
|
482
|
+
assert !i1.stopped?
|
483
|
+
assert !i2.stopped?
|
484
|
+
assert !i3.stopped?
|
485
|
+
|
486
|
+
d.stop
|
487
|
+
|
488
|
+
assert i1.stopped?
|
489
|
+
assert i2.stopped?
|
490
|
+
assert i3.stopped?
|
491
|
+
|
492
|
+
assert !i1.before_shutdown?
|
493
|
+
assert !i2.before_shutdown?
|
494
|
+
assert !i3.before_shutdown?
|
495
|
+
|
496
|
+
d.before_shutdown
|
497
|
+
|
498
|
+
assert i1.before_shutdown?
|
499
|
+
assert i2.before_shutdown?
|
500
|
+
assert i3.before_shutdown?
|
501
|
+
|
502
|
+
assert !i1.shutdown?
|
503
|
+
assert !i2.shutdown?
|
504
|
+
assert !i3.shutdown?
|
505
|
+
|
506
|
+
d.shutdown
|
507
|
+
|
508
|
+
assert i1.shutdown?
|
509
|
+
assert i2.shutdown?
|
510
|
+
assert i3.shutdown?
|
511
|
+
|
512
|
+
assert !i1.after_shutdown?
|
513
|
+
assert !i2.after_shutdown?
|
514
|
+
assert !i3.after_shutdown?
|
515
|
+
|
516
|
+
d.after_shutdown
|
517
|
+
|
518
|
+
assert i1.after_shutdown?
|
519
|
+
assert i2.after_shutdown?
|
520
|
+
assert i3.after_shutdown?
|
521
|
+
|
522
|
+
assert !i1.closed?
|
523
|
+
assert !i2.closed?
|
524
|
+
assert !i3.closed?
|
525
|
+
|
526
|
+
d.close
|
527
|
+
|
528
|
+
assert i1.closed?
|
529
|
+
assert i2.closed?
|
530
|
+
assert i3.closed?
|
531
|
+
|
532
|
+
assert !i1.terminated?
|
533
|
+
assert !i2.terminated?
|
534
|
+
assert !i3.terminated?
|
535
|
+
|
536
|
+
d.terminate
|
537
|
+
|
538
|
+
assert i1.terminated?
|
539
|
+
assert i2.terminated?
|
540
|
+
assert i3.terminated?
|
541
|
+
end
|
542
|
+
end
|
@@ -0,0 +1,164 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/plugin_helper/thread'
|
3
|
+
require 'fluent/plugin/base'
|
4
|
+
require 'timeout'
|
5
|
+
|
6
|
+
class ThreadTest < Test::Unit::TestCase
|
7
|
+
class Dummy < Fluent::Plugin::TestBase
|
8
|
+
helpers :thread
|
9
|
+
def configure(conf)
|
10
|
+
super
|
11
|
+
@_thread_wait_seconds = 0.1
|
12
|
+
self
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
test 'can be instantiated to be able to create threads' do
|
17
|
+
d1 = Dummy.new
|
18
|
+
assert d1.respond_to?(:thread_current_running?)
|
19
|
+
assert d1.respond_to?(:thread_create)
|
20
|
+
assert d1.respond_to?(:_threads)
|
21
|
+
assert !d1.thread_current_running?
|
22
|
+
assert d1._threads.empty?
|
23
|
+
end
|
24
|
+
|
25
|
+
test 'can be configured' do
|
26
|
+
d1 = Dummy.new
|
27
|
+
assert_nothing_raised do
|
28
|
+
d1.configure(config_element())
|
29
|
+
end
|
30
|
+
assert d1.plugin_id
|
31
|
+
assert d1.log
|
32
|
+
end
|
33
|
+
|
34
|
+
test 'can create thread after prepared' do
|
35
|
+
d1 = Dummy.new
|
36
|
+
d1.configure(config_element())
|
37
|
+
d1.start
|
38
|
+
|
39
|
+
m1 = Mutex.new
|
40
|
+
m2 = Mutex.new
|
41
|
+
|
42
|
+
m1.lock
|
43
|
+
thread_run = false
|
44
|
+
|
45
|
+
Timeout.timeout(10) do
|
46
|
+
t = d1.thread_create(:test1) do
|
47
|
+
m2.lock
|
48
|
+
|
49
|
+
assert !d1._threads.empty? # this must be true always
|
50
|
+
assert d1.thread_current_running?
|
51
|
+
|
52
|
+
thread_run = true
|
53
|
+
m2.unlock
|
54
|
+
m1.lock
|
55
|
+
end
|
56
|
+
Thread.pass until m2.locked? || thread_run
|
57
|
+
|
58
|
+
m2.lock; m2.unlock
|
59
|
+
assert_equal 1, d1._threads.size
|
60
|
+
|
61
|
+
assert_equal :test1, t[:_fluentd_plugin_helper_thread_title]
|
62
|
+
assert t[:_fluentd_plugin_helper_thread_running]
|
63
|
+
assert !d1._threads.empty?
|
64
|
+
|
65
|
+
m1.unlock
|
66
|
+
|
67
|
+
while t[:_fluentd_plugin_helper_thread_running]
|
68
|
+
Thread.pass
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
assert d1._threads.empty?
|
73
|
+
|
74
|
+
d1.stop; d1.shutdown; d1.close; d1.terminate
|
75
|
+
end
|
76
|
+
|
77
|
+
test 'can wait until all threads start' do
|
78
|
+
d1 = Dummy.new.configure(config_element()).start
|
79
|
+
ary = []
|
80
|
+
d1.thread_create(:t1) do
|
81
|
+
ary << 1
|
82
|
+
end
|
83
|
+
d1.thread_create(:t2) do
|
84
|
+
ary << 2
|
85
|
+
end
|
86
|
+
d1.thread_create(:t3) do
|
87
|
+
ary << 3
|
88
|
+
end
|
89
|
+
Timeout.timeout(10) do
|
90
|
+
d1.thread_wait_until_start
|
91
|
+
end
|
92
|
+
assert_equal [1,2,3], ary.sort
|
93
|
+
|
94
|
+
d1.stop; d1.shutdown; d1.close; d1.terminate
|
95
|
+
end
|
96
|
+
|
97
|
+
test 'can stop threads which is watching thread_current_running?, and then close it' do
|
98
|
+
d1 = Dummy.new.configure(config_element()).start
|
99
|
+
|
100
|
+
m1 = Mutex.new
|
101
|
+
thread_in_run = false
|
102
|
+
Timeout.timeout(10) do
|
103
|
+
t = d1.thread_create(:test2) do
|
104
|
+
thread_in_run = true
|
105
|
+
m1.lock
|
106
|
+
while d1.thread_current_running?
|
107
|
+
Thread.pass
|
108
|
+
end
|
109
|
+
thread_in_run = false
|
110
|
+
m1.unlock
|
111
|
+
end
|
112
|
+
Thread.pass until m1.locked?
|
113
|
+
|
114
|
+
assert thread_in_run
|
115
|
+
assert !d1._threads.empty?
|
116
|
+
|
117
|
+
d1.stop
|
118
|
+
Thread.pass while m1.locked?
|
119
|
+
assert !t[:_fluentd_plugin_helper_thread_running]
|
120
|
+
assert t.stop?
|
121
|
+
end
|
122
|
+
|
123
|
+
assert d1._threads.empty?
|
124
|
+
|
125
|
+
d1.stop; d1.shutdown; d1.close; d1.terminate
|
126
|
+
end
|
127
|
+
|
128
|
+
test 'can terminate threads forcedly which is running forever' do
|
129
|
+
d1 = Dummy.new.configure(config_element()).start
|
130
|
+
|
131
|
+
m1 = Mutex.new
|
132
|
+
thread_in_run = false
|
133
|
+
Timeout.timeout(10) do
|
134
|
+
t = d1.thread_create(:test2) do
|
135
|
+
thread_in_run = true
|
136
|
+
m1.lock
|
137
|
+
while true
|
138
|
+
Thread.pass
|
139
|
+
end
|
140
|
+
thread_in_run = false
|
141
|
+
end
|
142
|
+
Thread.pass until m1.locked?
|
143
|
+
|
144
|
+
assert thread_in_run
|
145
|
+
assert !d1._threads.empty?
|
146
|
+
|
147
|
+
d1.stop
|
148
|
+
assert !t[:_fluentd_plugin_helper_thread_running]
|
149
|
+
assert t.alive?
|
150
|
+
|
151
|
+
d1.shutdown
|
152
|
+
assert t.alive?
|
153
|
+
assert !d1._threads.empty?
|
154
|
+
|
155
|
+
d1.close
|
156
|
+
assert t.alive?
|
157
|
+
assert !d1._threads.empty?
|
158
|
+
|
159
|
+
d1.terminate
|
160
|
+
assert t.stop?
|
161
|
+
assert d1._threads.empty?
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|