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,398 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
|
3
|
+
require 'pathname'
|
4
|
+
require 'fluent/command/plugin_config_formatter'
|
5
|
+
require 'fluent/plugin/input'
|
6
|
+
require 'fluent/plugin/output'
|
7
|
+
require 'fluent/plugin/filter'
|
8
|
+
require 'fluent/plugin/parser'
|
9
|
+
require 'fluent/plugin/formatter'
|
10
|
+
|
11
|
+
class TestFluentPluginConfigFormatter < Test::Unit::TestCase
|
12
|
+
class FakeInput < ::Fluent::Plugin::Input
|
13
|
+
::Fluent::Plugin.register_input("fake", self)
|
14
|
+
|
15
|
+
desc "path to something"
|
16
|
+
config_param :path, :string
|
17
|
+
end
|
18
|
+
|
19
|
+
class FakeOutput < ::Fluent::Plugin::Output
|
20
|
+
::Fluent::Plugin.register_output("fake", self)
|
21
|
+
|
22
|
+
desc "path to something"
|
23
|
+
config_param :path, :string
|
24
|
+
|
25
|
+
def process(tag, es)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class FakeFilter < ::Fluent::Plugin::Filter
|
30
|
+
::Fluent::Plugin.register_filter("fake", self)
|
31
|
+
|
32
|
+
desc "path to something"
|
33
|
+
config_param :path, :string
|
34
|
+
|
35
|
+
def filter(tag, time, record)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
class FakeParser < ::Fluent::Plugin::Parser
|
40
|
+
::Fluent::Plugin.register_parser("fake", self)
|
41
|
+
|
42
|
+
desc "path to something"
|
43
|
+
config_param :path, :string
|
44
|
+
|
45
|
+
def parse(text)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
class FakeFormatter < ::Fluent::Plugin::Formatter
|
50
|
+
::Fluent::Plugin.register_formatter("fake", self)
|
51
|
+
|
52
|
+
desc "path to something"
|
53
|
+
config_param :path, :string
|
54
|
+
|
55
|
+
def format(tag, time, record)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
class FakeStorage < ::Fluent::Plugin::Storage
|
60
|
+
::Fluent::Plugin.register_storage('fake', self)
|
61
|
+
|
62
|
+
def get(key)
|
63
|
+
end
|
64
|
+
|
65
|
+
def fetch(key, defval)
|
66
|
+
end
|
67
|
+
|
68
|
+
def put(key, value)
|
69
|
+
end
|
70
|
+
|
71
|
+
def delete(key)
|
72
|
+
end
|
73
|
+
|
74
|
+
def update(key, &block)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
class FakeServiceDiscovery < ::Fluent::Plugin::ServiceDiscovery
|
79
|
+
::Fluent::Plugin.register_sd('fake', self)
|
80
|
+
|
81
|
+
desc "hostname"
|
82
|
+
config_param :hostname, :string
|
83
|
+
end
|
84
|
+
|
85
|
+
class SimpleInput < ::Fluent::Plugin::Input
|
86
|
+
::Fluent::Plugin.register_input("simple", self)
|
87
|
+
helpers :inject, :compat_parameters
|
88
|
+
|
89
|
+
desc "path to something"
|
90
|
+
config_param :path, :string
|
91
|
+
end
|
92
|
+
|
93
|
+
class ComplexOutput < ::Fluent::Plugin::Output
|
94
|
+
::Fluent::Plugin.register_output("complex", self)
|
95
|
+
helpers :inject, :compat_parameters
|
96
|
+
|
97
|
+
config_section :authentication, required: true, multi: false do
|
98
|
+
desc "username"
|
99
|
+
config_param :username, :string
|
100
|
+
desc "password"
|
101
|
+
config_param :password, :string, secret: true
|
102
|
+
end
|
103
|
+
|
104
|
+
config_section :parent do
|
105
|
+
config_section :child do
|
106
|
+
desc "names"
|
107
|
+
config_param :names, :array
|
108
|
+
desc "difficulty"
|
109
|
+
config_param :difficulty, :enum, list: [:easy, :normal, :hard], default: :normal
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
def process(tag, es)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
class SimpleServiceDiscovery < ::Fluent::Plugin::ServiceDiscovery
|
118
|
+
::Fluent::Plugin.register_sd('simple', self)
|
119
|
+
|
120
|
+
desc "servers"
|
121
|
+
config_param :servers, :array
|
122
|
+
end
|
123
|
+
|
124
|
+
sub_test_case "json" do
|
125
|
+
data(input: [FakeInput, "input"],
|
126
|
+
output: [FakeOutput, "output"],
|
127
|
+
filter: [FakeFilter, "filter"],
|
128
|
+
parser: [FakeParser, "parser"],
|
129
|
+
formatter: [FakeFormatter, "formatter"])
|
130
|
+
test "dumped config should be valid JSON" do |(klass, type)|
|
131
|
+
dumped_config = capture_stdout do
|
132
|
+
FluentPluginConfigFormatter.new(["--format=json", type, "fake"]).call
|
133
|
+
end
|
134
|
+
expected = {
|
135
|
+
path: {
|
136
|
+
desc: "path to something",
|
137
|
+
type: "string",
|
138
|
+
required: true
|
139
|
+
}
|
140
|
+
}
|
141
|
+
assert_equal(expected, JSON.parse(dumped_config, symbolize_names: true)[klass.name.to_sym])
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
sub_test_case "text" do
|
146
|
+
test "input simple" do
|
147
|
+
dumped_config = capture_stdout do
|
148
|
+
FluentPluginConfigFormatter.new(["--format=txt", "input", "simple"]).call
|
149
|
+
end
|
150
|
+
expected = <<TEXT
|
151
|
+
helpers: inject,compat_parameters
|
152
|
+
@log_level: string: (nil)
|
153
|
+
path: string: (nil)
|
154
|
+
TEXT
|
155
|
+
assert_equal(expected, dumped_config)
|
156
|
+
end
|
157
|
+
|
158
|
+
test "output complex" do
|
159
|
+
dumped_config = capture_stdout do
|
160
|
+
FluentPluginConfigFormatter.new(["--format=txt", "output", "complex"]).call
|
161
|
+
end
|
162
|
+
expected = <<TEXT
|
163
|
+
helpers: inject,compat_parameters
|
164
|
+
@log_level: string: (nil)
|
165
|
+
time_as_integer: bool: (false)
|
166
|
+
slow_flush_log_threshold: float: (20.0)
|
167
|
+
<buffer>: optional, single
|
168
|
+
chunk_keys: array: ([])
|
169
|
+
@type: string: ("memory")
|
170
|
+
timekey: time: (nil)
|
171
|
+
timekey_wait: time: (600)
|
172
|
+
timekey_use_utc: bool: (false)
|
173
|
+
timekey_zone: string: ("#{Time.now.strftime('%z')}")
|
174
|
+
flush_at_shutdown: bool: (nil)
|
175
|
+
flush_mode: enum: (:default)
|
176
|
+
flush_interval: time: (60)
|
177
|
+
flush_thread_count: integer: (1)
|
178
|
+
flush_thread_interval: float: (1.0)
|
179
|
+
flush_thread_burst_interval: float: (1.0)
|
180
|
+
delayed_commit_timeout: time: (60)
|
181
|
+
overflow_action: enum: (:throw_exception)
|
182
|
+
retry_forever: bool: (false)
|
183
|
+
retry_timeout: time: (259200)
|
184
|
+
retry_max_times: integer: (nil)
|
185
|
+
retry_secondary_threshold: float: (0.8)
|
186
|
+
retry_type: enum: (:exponential_backoff)
|
187
|
+
retry_wait: time: (1)
|
188
|
+
retry_exponential_backoff_base: float: (2)
|
189
|
+
retry_max_interval: time: (nil)
|
190
|
+
retry_randomize: bool: (true)
|
191
|
+
disable_chunk_backup: bool: (false)
|
192
|
+
<secondary>: optional, single
|
193
|
+
@type: string: (nil)
|
194
|
+
<buffer>: optional, single
|
195
|
+
<secondary>: optional, single
|
196
|
+
<authentication>: required, single
|
197
|
+
username: string: (nil)
|
198
|
+
password: string: (nil)
|
199
|
+
<parent>: optional, multiple
|
200
|
+
<child>: optional, multiple
|
201
|
+
names: array: (nil)
|
202
|
+
difficulty: enum: (:normal)
|
203
|
+
TEXT
|
204
|
+
assert_equal(expected, dumped_config)
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
sub_test_case "markdown" do
|
209
|
+
test "input simple" do
|
210
|
+
dumped_config = capture_stdout do
|
211
|
+
FluentPluginConfigFormatter.new(["--format=markdown", "input", "simple"]).call
|
212
|
+
end
|
213
|
+
expected = <<TEXT
|
214
|
+
## Plugin helpers
|
215
|
+
|
216
|
+
* [inject](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-inject)
|
217
|
+
* [compat_parameters](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-compat_parameters)
|
218
|
+
|
219
|
+
* See also: [Input Plugin Overview](https://docs.fluentd.org/v/1.0/input#overview)
|
220
|
+
|
221
|
+
## TestFluentPluginConfigFormatter::SimpleInput
|
222
|
+
|
223
|
+
### path (string) (required)
|
224
|
+
|
225
|
+
path to something
|
226
|
+
|
227
|
+
|
228
|
+
TEXT
|
229
|
+
assert_equal(expected, dumped_config)
|
230
|
+
end
|
231
|
+
|
232
|
+
test "input simple (table)" do
|
233
|
+
dumped_config = capture_stdout do
|
234
|
+
FluentPluginConfigFormatter.new(["--format=markdown", "--table", "input", "simple"]).call
|
235
|
+
end
|
236
|
+
expected = <<TEXT
|
237
|
+
## Plugin helpers
|
238
|
+
|
239
|
+
* [inject](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-inject)
|
240
|
+
* [compat_parameters](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-compat_parameters)
|
241
|
+
|
242
|
+
* See also: [Input Plugin Overview](https://docs.fluentd.org/v/1.0/input#overview)
|
243
|
+
|
244
|
+
## TestFluentPluginConfigFormatter::SimpleInput
|
245
|
+
|
246
|
+
### Configuration
|
247
|
+
|
248
|
+
|parameter|type|description|default|
|
249
|
+
|---|---|---|---|
|
250
|
+
|path|string (required)|path to something||
|
251
|
+
|
252
|
+
TEXT
|
253
|
+
assert_equal(expected, dumped_config)
|
254
|
+
end
|
255
|
+
|
256
|
+
data("abbrev" => "sd",
|
257
|
+
"normal" => "service_discovery")
|
258
|
+
test "service_discovery simple" do |data|
|
259
|
+
plugin_type = data
|
260
|
+
dumped_config = capture_stdout do
|
261
|
+
FluentPluginConfigFormatter.new(["--format=markdown", plugin_type, "simple"]).call
|
262
|
+
end
|
263
|
+
expected = <<TEXT
|
264
|
+
* See also: [ServiceDiscovery Plugin Overview](https://docs.fluentd.org/v/1.0/servicediscovery#overview)
|
265
|
+
|
266
|
+
## TestFluentPluginConfigFormatter::SimpleServiceDiscovery
|
267
|
+
|
268
|
+
### servers (array) (required)
|
269
|
+
|
270
|
+
servers
|
271
|
+
|
272
|
+
|
273
|
+
TEXT
|
274
|
+
assert_equal(expected, dumped_config)
|
275
|
+
end
|
276
|
+
|
277
|
+
|
278
|
+
test "output complex" do
|
279
|
+
dumped_config = capture_stdout do
|
280
|
+
FluentPluginConfigFormatter.new(["--format=markdown", "output", "complex"]).call
|
281
|
+
end
|
282
|
+
expected = <<TEXT
|
283
|
+
## Plugin helpers
|
284
|
+
|
285
|
+
* [inject](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-inject)
|
286
|
+
* [compat_parameters](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-compat_parameters)
|
287
|
+
|
288
|
+
* See also: [Output Plugin Overview](https://docs.fluentd.org/v/1.0/output#overview)
|
289
|
+
|
290
|
+
## TestFluentPluginConfigFormatter::ComplexOutput
|
291
|
+
|
292
|
+
|
293
|
+
### \\<authentication\\> section (required) (single)
|
294
|
+
|
295
|
+
#### username (string) (required)
|
296
|
+
|
297
|
+
username
|
298
|
+
|
299
|
+
#### password (string) (required)
|
300
|
+
|
301
|
+
password
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
### \\<parent\\> section (optional) (multiple)
|
306
|
+
|
307
|
+
|
308
|
+
#### \\<child\\> section (optional) (multiple)
|
309
|
+
|
310
|
+
##### names (array) (required)
|
311
|
+
|
312
|
+
names
|
313
|
+
|
314
|
+
##### difficulty (enum) (optional)
|
315
|
+
|
316
|
+
difficulty
|
317
|
+
|
318
|
+
Available values: easy, normal, hard
|
319
|
+
|
320
|
+
Default value: `normal`.
|
321
|
+
|
322
|
+
|
323
|
+
|
324
|
+
|
325
|
+
TEXT
|
326
|
+
assert_equal(expected, dumped_config)
|
327
|
+
end
|
328
|
+
|
329
|
+
test "output complex (table)" do
|
330
|
+
dumped_config = capture_stdout do
|
331
|
+
FluentPluginConfigFormatter.new(["--format=markdown", "--table", "output", "complex"]).call
|
332
|
+
end
|
333
|
+
expected = <<TEXT
|
334
|
+
## Plugin helpers
|
335
|
+
|
336
|
+
* [inject](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-inject)
|
337
|
+
* [compat_parameters](https://docs.fluentd.org/v/1.0/plugin-helper-overview/api-plugin-helper-compat_parameters)
|
338
|
+
|
339
|
+
* See also: [Output Plugin Overview](https://docs.fluentd.org/v/1.0/output#overview)
|
340
|
+
|
341
|
+
## TestFluentPluginConfigFormatter::ComplexOutput
|
342
|
+
|
343
|
+
|
344
|
+
### \\<authentication\\> section (required) (single)
|
345
|
+
|
346
|
+
### Configuration
|
347
|
+
|
348
|
+
|parameter|type|description|default|
|
349
|
+
|---|---|---|---|
|
350
|
+
|username|string (required)|username||
|
351
|
+
|password|string (required)|password||
|
352
|
+
|
353
|
+
|
354
|
+
### \\<parent\\> section (optional) (multiple)
|
355
|
+
|
356
|
+
|
357
|
+
#### \\<child\\> section (optional) (multiple)
|
358
|
+
|
359
|
+
### Configuration
|
360
|
+
|
361
|
+
|parameter|type|description|default|
|
362
|
+
|---|---|---|---|
|
363
|
+
|names|array (required)|names||
|
364
|
+
|difficulty|enum (optional)|difficulty (`easy`, `normal`, `hard`)|`normal`|
|
365
|
+
|
366
|
+
|
367
|
+
|
368
|
+
TEXT
|
369
|
+
assert_equal(expected, dumped_config)
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
373
|
+
sub_test_case "arguments" do
|
374
|
+
data do
|
375
|
+
hash = {}
|
376
|
+
["input", "output", "filter", "parser", "formatter", "storage", "service_discovery"].each do |type|
|
377
|
+
["txt", "json", "markdown"].each do |format|
|
378
|
+
argv = ["--format=#{format}"]
|
379
|
+
[
|
380
|
+
["--verbose", "--compact"],
|
381
|
+
["--verbose"],
|
382
|
+
["--compact"]
|
383
|
+
].each do |options|
|
384
|
+
hash["[#{type}] " + (argv + options).join(" ")] = argv + options + [type, "fake"]
|
385
|
+
end
|
386
|
+
end
|
387
|
+
end
|
388
|
+
hash
|
389
|
+
end
|
390
|
+
test "dump txt" do |argv|
|
391
|
+
capture_stdout do
|
392
|
+
assert_nothing_raised do
|
393
|
+
FluentPluginConfigFormatter.new(argv).call
|
394
|
+
end
|
395
|
+
end
|
396
|
+
end
|
397
|
+
end
|
398
|
+
end
|
@@ -0,0 +1,109 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
|
3
|
+
require 'pathname'
|
4
|
+
require 'fluent/command/plugin_generator'
|
5
|
+
|
6
|
+
class TestFluentPluginGenerator < Test::Unit::TestCase
|
7
|
+
TEMP_DIR = "tmp/plugin_generator"
|
8
|
+
setup do
|
9
|
+
FileUtils.mkdir_p(TEMP_DIR)
|
10
|
+
@pwd = Dir.pwd
|
11
|
+
Dir.chdir(TEMP_DIR)
|
12
|
+
end
|
13
|
+
|
14
|
+
teardown do
|
15
|
+
Dir.chdir(@pwd)
|
16
|
+
FileUtils.rm_rf(TEMP_DIR)
|
17
|
+
end
|
18
|
+
|
19
|
+
def stub_git_process(target)
|
20
|
+
stub(target).spawn do |cmd, arg1, arg2|
|
21
|
+
assert_equal %w[git init .], [cmd, arg1, arg2]
|
22
|
+
-1
|
23
|
+
end
|
24
|
+
stub(Process).wait { |pid| assert_equal(pid, -1) }
|
25
|
+
end
|
26
|
+
|
27
|
+
sub_test_case "generate plugin" do
|
28
|
+
data(input: ["input", "in"],
|
29
|
+
output: ["output", "out"],
|
30
|
+
filter: ["filter", "filter"],
|
31
|
+
parser: ["parser", "parser"],
|
32
|
+
formatter: ["formatter", "formatter"],
|
33
|
+
storage: ["storage", "storage"])
|
34
|
+
test "generate plugin" do |(type, part)|
|
35
|
+
generator = FluentPluginGenerator.new([type, "fake"])
|
36
|
+
stub_git_process(generator)
|
37
|
+
capture_stdout do
|
38
|
+
generator.call
|
39
|
+
end
|
40
|
+
plugin_base_dir = Pathname("fluent-plugin-fake")
|
41
|
+
assert { plugin_base_dir.directory? }
|
42
|
+
expected = [
|
43
|
+
"fluent-plugin-fake",
|
44
|
+
"fluent-plugin-fake/Gemfile",
|
45
|
+
"fluent-plugin-fake/LICENSE",
|
46
|
+
"fluent-plugin-fake/README.md",
|
47
|
+
"fluent-plugin-fake/Rakefile",
|
48
|
+
"fluent-plugin-fake/fluent-plugin-fake.gemspec",
|
49
|
+
"fluent-plugin-fake/lib",
|
50
|
+
"fluent-plugin-fake/lib/fluent",
|
51
|
+
"fluent-plugin-fake/lib/fluent/plugin",
|
52
|
+
"fluent-plugin-fake/lib/fluent/plugin/#{part}_fake.rb",
|
53
|
+
"fluent-plugin-fake/test",
|
54
|
+
"fluent-plugin-fake/test/helper.rb",
|
55
|
+
"fluent-plugin-fake/test/plugin",
|
56
|
+
"fluent-plugin-fake/test/plugin/test_#{part}_fake.rb",
|
57
|
+
]
|
58
|
+
actual = plugin_base_dir.find.reject {|f| f.fnmatch("*/.git*") }.map(&:to_s).sort
|
59
|
+
assert_equal(expected, actual)
|
60
|
+
end
|
61
|
+
|
62
|
+
test "no license" do
|
63
|
+
generator = FluentPluginGenerator.new(["--no-license", "filter", "fake"])
|
64
|
+
stub_git_process(generator)
|
65
|
+
capture_stdout do
|
66
|
+
generator.call
|
67
|
+
end
|
68
|
+
assert { !Pathname("fluent-plugin-fake/LICENSE").exist? }
|
69
|
+
assert { Pathname("fluent-plugin-fake/Gemfile").exist? }
|
70
|
+
end
|
71
|
+
|
72
|
+
test "unknown license" do
|
73
|
+
out = capture_stdout do
|
74
|
+
assert_raise(SystemExit) do
|
75
|
+
FluentPluginGenerator.new(["--license=unknown", "filter", "fake"]).call
|
76
|
+
end
|
77
|
+
end
|
78
|
+
assert { out.lines.include?("License: unknown\n") }
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
sub_test_case "unify plugin name" do
|
83
|
+
data("word" => ["fake", "fake"],
|
84
|
+
"underscore" => ["rewrite_tag_filter", "rewrite_tag_filter"],
|
85
|
+
"dash" => ["rewrite-tag-filter", "rewrite_tag_filter"])
|
86
|
+
test "plugin_name" do |(name, plugin_name)|
|
87
|
+
generator = FluentPluginGenerator.new(["filter", name])
|
88
|
+
stub_git_process(generator)
|
89
|
+
stub(Process).wait { |pid| assert_equal(pid, -1) }
|
90
|
+
capture_stdout do
|
91
|
+
generator.call
|
92
|
+
end
|
93
|
+
assert_equal(plugin_name, generator.__send__(:plugin_name))
|
94
|
+
end
|
95
|
+
|
96
|
+
data("word" => ["fake", "fluent-plugin-fake"],
|
97
|
+
"underscore" => ["rewrite_tag_filter", "fluent-plugin-rewrite-tag-filter"],
|
98
|
+
"dash" => ["rewrite-tag-filter", "fluent-plugin-rewrite-tag-filter"])
|
99
|
+
test "gem_name" do |(name, gem_name)|
|
100
|
+
generator = FluentPluginGenerator.new(["output", name])
|
101
|
+
stub_git_process(generator)
|
102
|
+
stub(Process).wait { |pid| assert_equal(pid, -1) }
|
103
|
+
capture_stdout do
|
104
|
+
generator.call
|
105
|
+
end
|
106
|
+
assert_equal(gem_name, generator.__send__(:gem_name))
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
@@ -0,0 +1,166 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
|
3
|
+
# these are Fluent::Compat::* in fact
|
4
|
+
require 'fluent/input'
|
5
|
+
require 'fluent/output'
|
6
|
+
require 'fluent/filter'
|
7
|
+
|
8
|
+
class CompatCallsSuperTest < Test::Unit::TestCase
|
9
|
+
class DummyGoodInput < Fluent::Input
|
10
|
+
def configure(conf); super; end
|
11
|
+
def start; super; end
|
12
|
+
def before_shutdown; super; end
|
13
|
+
def shutdown; super; end
|
14
|
+
end
|
15
|
+
class DummyBadInput < Fluent::Input
|
16
|
+
def configure(conf); super; end
|
17
|
+
def start; end
|
18
|
+
def before_shutdown; end
|
19
|
+
def shutdown; end
|
20
|
+
end
|
21
|
+
class DummyGoodOutput < Fluent::Output
|
22
|
+
def configure(conf); super; end
|
23
|
+
def start; super; end
|
24
|
+
def before_shutdown; super; end
|
25
|
+
def shutdown; super; end
|
26
|
+
end
|
27
|
+
class DummyBadOutput < Fluent::Output
|
28
|
+
def configure(conf); super; end
|
29
|
+
def start; end
|
30
|
+
def before_shutdown; end
|
31
|
+
def shutdown; end
|
32
|
+
end
|
33
|
+
class DummyGoodFilter < Fluent::Filter
|
34
|
+
def configure(conf); super; end
|
35
|
+
def filter(tag, time, record); end
|
36
|
+
def start; super; end
|
37
|
+
def before_shutdown; super; end
|
38
|
+
def shutdown; super; end
|
39
|
+
end
|
40
|
+
class DummyBadFilter < Fluent::Filter
|
41
|
+
def configure(conf); super; end
|
42
|
+
def filter(tag, time, record); end
|
43
|
+
def start; end
|
44
|
+
def before_shutdown; end
|
45
|
+
def shutdown; end
|
46
|
+
end
|
47
|
+
|
48
|
+
setup do
|
49
|
+
Fluent::Test.setup
|
50
|
+
end
|
51
|
+
|
52
|
+
sub_test_case 'old API plugin which calls super properly' do
|
53
|
+
test 'Input#start, #before_shutdown and #shutdown calls all superclass methods properly' do
|
54
|
+
i = DummyGoodInput.new
|
55
|
+
i.configure(config_element())
|
56
|
+
assert i.configured?
|
57
|
+
|
58
|
+
i.start
|
59
|
+
assert i.started?
|
60
|
+
|
61
|
+
i.before_shutdown
|
62
|
+
assert i.before_shutdown?
|
63
|
+
|
64
|
+
i.shutdown
|
65
|
+
assert i.shutdown?
|
66
|
+
|
67
|
+
assert i.log.out.logs.empty?
|
68
|
+
end
|
69
|
+
|
70
|
+
test 'Output#start, #before_shutdown and #shutdown calls all superclass methods properly' do
|
71
|
+
i = DummyGoodOutput.new
|
72
|
+
i.configure(config_element())
|
73
|
+
assert i.configured?
|
74
|
+
|
75
|
+
i.start
|
76
|
+
assert i.started?
|
77
|
+
|
78
|
+
i.before_shutdown
|
79
|
+
assert i.before_shutdown?
|
80
|
+
|
81
|
+
i.shutdown
|
82
|
+
assert i.shutdown?
|
83
|
+
|
84
|
+
assert i.log.out.logs.empty?
|
85
|
+
end
|
86
|
+
|
87
|
+
test 'Filter#start, #before_shutdown and #shutdown calls all superclass methods properly' do
|
88
|
+
i = DummyGoodFilter.new
|
89
|
+
i.configure(config_element())
|
90
|
+
assert i.configured?
|
91
|
+
|
92
|
+
i.start
|
93
|
+
assert i.started?
|
94
|
+
|
95
|
+
i.before_shutdown
|
96
|
+
assert i.before_shutdown?
|
97
|
+
|
98
|
+
i.shutdown
|
99
|
+
assert i.shutdown?
|
100
|
+
|
101
|
+
assert i.log.out.logs.empty?
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
sub_test_case 'old API plugin which does not call super' do
|
106
|
+
test 'Input#start, #before_shutdown and #shutdown calls superclass methods forcedly with logs' do
|
107
|
+
i = DummyBadInput.new
|
108
|
+
i.configure(config_element())
|
109
|
+
assert i.configured?
|
110
|
+
|
111
|
+
i.start
|
112
|
+
assert i.started?
|
113
|
+
|
114
|
+
i.before_shutdown
|
115
|
+
assert i.before_shutdown?
|
116
|
+
|
117
|
+
i.shutdown
|
118
|
+
assert i.shutdown?
|
119
|
+
|
120
|
+
logs = i.log.out.logs
|
121
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #start: called it forcedly plugin=CompatCallsSuperTest::DummyBadInput") } }
|
122
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #before_shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadInput") } }
|
123
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadInput") } }
|
124
|
+
end
|
125
|
+
|
126
|
+
test 'Output#start, #before_shutdown and #shutdown calls superclass methods forcedly with logs' do
|
127
|
+
i = DummyBadOutput.new
|
128
|
+
i.configure(config_element())
|
129
|
+
assert i.configured?
|
130
|
+
|
131
|
+
i.start
|
132
|
+
assert i.started?
|
133
|
+
|
134
|
+
i.before_shutdown
|
135
|
+
assert i.before_shutdown?
|
136
|
+
|
137
|
+
i.shutdown
|
138
|
+
assert i.shutdown?
|
139
|
+
|
140
|
+
logs = i.log.out.logs
|
141
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #start: called it forcedly plugin=CompatCallsSuperTest::DummyBadOutput") } }
|
142
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #before_shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadOutput") } }
|
143
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadOutput") } }
|
144
|
+
end
|
145
|
+
|
146
|
+
test 'Filter#start, #before_shutdown and #shutdown calls superclass methods forcedly with logs' do
|
147
|
+
i = DummyBadFilter.new
|
148
|
+
i.configure(config_element())
|
149
|
+
assert i.configured?
|
150
|
+
|
151
|
+
i.start
|
152
|
+
assert i.started?
|
153
|
+
|
154
|
+
i.before_shutdown
|
155
|
+
assert i.before_shutdown?
|
156
|
+
|
157
|
+
i.shutdown
|
158
|
+
assert i.shutdown?
|
159
|
+
|
160
|
+
logs = i.log.out.logs
|
161
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #start: called it forcedly plugin=CompatCallsSuperTest::DummyBadFilter") } }
|
162
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #before_shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadFilter") } }
|
163
|
+
assert{ logs.any?{|l| l.include?("[warn]: super was not called in #shutdown: calling it forcedly plugin=CompatCallsSuperTest::DummyBadFilter") } }
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|