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,458 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'time'
|
3
|
+
require 'fileutils'
|
4
|
+
require 'fluent/event'
|
5
|
+
require 'fluent/unique_id'
|
6
|
+
require 'fluent/plugin/buffer'
|
7
|
+
require 'fluent/plugin/out_secondary_file'
|
8
|
+
require 'fluent/plugin/buffer/memory_chunk'
|
9
|
+
require 'fluent/test/driver/output'
|
10
|
+
|
11
|
+
class FileOutputSecondaryTest < Test::Unit::TestCase
|
12
|
+
include Fluent::UniqueId::Mixin
|
13
|
+
|
14
|
+
def setup
|
15
|
+
Fluent::Test.setup
|
16
|
+
FileUtils.rm_rf(TMP_DIR)
|
17
|
+
FileUtils.mkdir_p(TMP_DIR)
|
18
|
+
end
|
19
|
+
|
20
|
+
TMP_DIR = File.expand_path(File.dirname(__FILE__) + "/../tmp/out_secondary_file#{ENV['TEST_ENV_NUMBER']}")
|
21
|
+
|
22
|
+
CONFIG = %[
|
23
|
+
directory #{TMP_DIR}
|
24
|
+
basename out_file_test
|
25
|
+
compress gzip
|
26
|
+
]
|
27
|
+
|
28
|
+
class DummyOutput < Fluent::Plugin::Output
|
29
|
+
def write(chunk); end
|
30
|
+
end
|
31
|
+
|
32
|
+
def create_primary(buffer_cofig = config_element('buffer'))
|
33
|
+
DummyOutput.new.configure(config_element('ROOT','',{}, [buffer_cofig]))
|
34
|
+
end
|
35
|
+
|
36
|
+
def create_driver(conf = CONFIG, primary = create_primary)
|
37
|
+
c = Fluent::Test::Driver::Output.new(Fluent::Plugin::SecondaryFileOutput)
|
38
|
+
c.instance.acts_as_secondary(primary)
|
39
|
+
c.configure(conf)
|
40
|
+
end
|
41
|
+
|
42
|
+
sub_test_case 'configure' do
|
43
|
+
test 'default configuration' do
|
44
|
+
d = create_driver %[directory #{TMP_DIR}]
|
45
|
+
assert_equal 'dump.bin', d.instance.basename
|
46
|
+
assert_equal TMP_DIR, d.instance.directory
|
47
|
+
assert_equal :text, d.instance.compress
|
48
|
+
assert_equal false, d.instance.append
|
49
|
+
end
|
50
|
+
|
51
|
+
test 'should be configurable' do
|
52
|
+
d = create_driver %[
|
53
|
+
directory #{TMP_DIR}
|
54
|
+
basename out_file_test
|
55
|
+
compress gzip
|
56
|
+
append true
|
57
|
+
]
|
58
|
+
assert_equal 'out_file_test', d.instance.basename
|
59
|
+
assert_equal TMP_DIR, d.instance.directory
|
60
|
+
assert_equal :gzip, d.instance.compress
|
61
|
+
assert_equal true, d.instance.append
|
62
|
+
end
|
63
|
+
|
64
|
+
test 'should only use in secondary' do
|
65
|
+
c = Fluent::Test::Driver::Output.new(Fluent::Plugin::SecondaryFileOutput)
|
66
|
+
assert_raise Fluent::ConfigError.new("This plugin can only be used in the <secondary> section") do
|
67
|
+
c.configure(CONFIG)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
test 'basename should not include `/`' do
|
72
|
+
assert_raise Fluent::ConfigError.new("basename should not include `/`") do
|
73
|
+
create_driver %[
|
74
|
+
directory #{TMP_DIR}
|
75
|
+
basename out/file
|
76
|
+
]
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
test 'directory should be writable' do
|
81
|
+
assert_nothing_raised do
|
82
|
+
create_driver %[directory #{TMP_DIR}/test_dir/foo/bar/]
|
83
|
+
end
|
84
|
+
|
85
|
+
assert_nothing_raised do
|
86
|
+
FileUtils.mkdir_p("#{TMP_DIR}/test_dir")
|
87
|
+
File.chmod(0777, "#{TMP_DIR}/test_dir")
|
88
|
+
create_driver %[directory #{TMP_DIR}/test_dir/foo/bar/]
|
89
|
+
end
|
90
|
+
|
91
|
+
if Process.uid.nonzero?
|
92
|
+
assert_raise Fluent::ConfigError.new("out_secondary_file: `#{TMP_DIR}/test_dir/foo/bar/` should be writable") do
|
93
|
+
FileUtils.mkdir_p("#{TMP_DIR}/test_dir")
|
94
|
+
File.chmod(0555, "#{TMP_DIR}/test_dir")
|
95
|
+
create_driver %[directory #{TMP_DIR}/test_dir/foo/bar/]
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
test 'should be passed directory' do
|
101
|
+
assert_raise Fluent::ConfigError do
|
102
|
+
i = Fluent::Plugin::SecondaryFileOutput.new
|
103
|
+
i.acts_as_secondary(create_primary)
|
104
|
+
i.configure(config_element())
|
105
|
+
end
|
106
|
+
|
107
|
+
assert_nothing_raised do
|
108
|
+
create_driver %[directory #{TMP_DIR}/test_dir/foo/bar/]
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
def check_gzipped_result(path, expect)
|
114
|
+
# Zlib::GzipReader has a bug of concatenated file: https://bugs.ruby-lang.org/issues/9790
|
115
|
+
# Following code from https://www.ruby-forum.com/topic/971591#979520
|
116
|
+
result = ""
|
117
|
+
waiting(10) do
|
118
|
+
# we can expect that GzipReader#read can wait unflushed raw data of `io` on disk
|
119
|
+
File.open(path, "rb") { |io|
|
120
|
+
loop do
|
121
|
+
gzr = Zlib::GzipReader.new(io)
|
122
|
+
result << gzr.read
|
123
|
+
unused = gzr.unused
|
124
|
+
gzr.finish
|
125
|
+
break if unused.nil?
|
126
|
+
io.pos -= unused.length
|
127
|
+
end
|
128
|
+
}
|
129
|
+
end
|
130
|
+
|
131
|
+
assert_equal expect, result
|
132
|
+
end
|
133
|
+
|
134
|
+
def create_chunk(primary, metadata, es)
|
135
|
+
primary.buffer.generate_chunk(metadata).tap do |c|
|
136
|
+
c.concat(es.to_msgpack_stream, es.size) # to_msgpack_stream is standard_format
|
137
|
+
c.commit
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
sub_test_case 'write' do
|
142
|
+
setup do
|
143
|
+
@record = { 'key' => 'value' }
|
144
|
+
@time = event_time
|
145
|
+
@es = Fluent::OneEventStream.new(@time, @record)
|
146
|
+
@primary = create_primary
|
147
|
+
metadata = @primary.buffer.new_metadata
|
148
|
+
@chunk = create_chunk(@primary, metadata, @es)
|
149
|
+
end
|
150
|
+
|
151
|
+
test 'should output compressed file when compress option is gzip' do
|
152
|
+
d = create_driver(CONFIG, @primary)
|
153
|
+
path = d.instance.write(@chunk)
|
154
|
+
|
155
|
+
assert_equal "#{TMP_DIR}/out_file_test.0.gz", path
|
156
|
+
check_gzipped_result(path, @es.to_msgpack_stream.force_encoding('ASCII-8BIT'))
|
157
|
+
end
|
158
|
+
|
159
|
+
test 'should output plain text when compress option is default(text)' do
|
160
|
+
d = create_driver(%[
|
161
|
+
directory #{TMP_DIR}/
|
162
|
+
basename out_file_test
|
163
|
+
], @primary)
|
164
|
+
|
165
|
+
msgpack_binary = @es.to_msgpack_stream.force_encoding('ASCII-8BIT')
|
166
|
+
|
167
|
+
path = d.instance.write(@chunk)
|
168
|
+
assert_equal "#{TMP_DIR}/out_file_test.0", path
|
169
|
+
waiting(5) do
|
170
|
+
sleep 0.1 until File.stat(path).size == msgpack_binary.size
|
171
|
+
end
|
172
|
+
|
173
|
+
assert_equal msgpack_binary, File.binread(path)
|
174
|
+
end
|
175
|
+
|
176
|
+
test 'path should be incremental when append option is false' do
|
177
|
+
d = create_driver(CONFIG, @primary)
|
178
|
+
packed_value = @es.to_msgpack_stream.force_encoding('ASCII-8BIT')
|
179
|
+
|
180
|
+
5.times do |i|
|
181
|
+
path = d.instance.write(@chunk)
|
182
|
+
assert_equal "#{TMP_DIR}/out_file_test.#{i}.gz", path
|
183
|
+
check_gzipped_result(path, packed_value)
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
test 'path should be unchanged when append option is true' do
|
188
|
+
d = create_driver(CONFIG + %[append true], @primary)
|
189
|
+
packed_value = @es.to_msgpack_stream.force_encoding('ASCII-8BIT')
|
190
|
+
|
191
|
+
[*1..5].each do |i|
|
192
|
+
path = d.instance.write(@chunk)
|
193
|
+
assert_equal "#{TMP_DIR}/out_file_test.gz", path
|
194
|
+
check_gzipped_result(path, packed_value * i)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
sub_test_case 'Syntax of placeholders' do
|
200
|
+
data(
|
201
|
+
tag: '${tag}',
|
202
|
+
tag_index: '${tag[0]}',
|
203
|
+
tag_index1: '${tag[10]}',
|
204
|
+
variable: '${key1}',
|
205
|
+
variable2: '${key@value}',
|
206
|
+
variable3: '${key_value}',
|
207
|
+
variable4: '${key.value}',
|
208
|
+
variable5: '${key-value}',
|
209
|
+
variable6: '${KEYVALUE}',
|
210
|
+
variable7: '${tags}',
|
211
|
+
variable8: '${tag${key}', # matched ${key}
|
212
|
+
)
|
213
|
+
test 'matches with a valid placeholder' do |path|
|
214
|
+
assert Fluent::Plugin::SecondaryFileOutput::PLACEHOLDER_REGEX.match(path)
|
215
|
+
end
|
216
|
+
|
217
|
+
data(
|
218
|
+
invalid_tag: 'tag',
|
219
|
+
invalid_tag2: '{tag}',
|
220
|
+
invalid_tag3: '${tag',
|
221
|
+
invalid_tag4: '${tag0]}',
|
222
|
+
invalid_tag5: '${tag[]]}',
|
223
|
+
invalid_variable: '${key[0]}',
|
224
|
+
invalid_variable2: '${key{key2}}',
|
225
|
+
)
|
226
|
+
test "doesn't match with an invalid placeholder" do |path|
|
227
|
+
assert !Fluent::Plugin::SecondaryFileOutput::PLACEHOLDER_REGEX.match(path)
|
228
|
+
end
|
229
|
+
end
|
230
|
+
|
231
|
+
sub_test_case 'path' do
|
232
|
+
setup do
|
233
|
+
@record = { 'key' => 'value' }
|
234
|
+
@time = event_time
|
235
|
+
@es = Fluent::OneEventStream.new(@time, @record)
|
236
|
+
primary = create_primary
|
237
|
+
m = primary.buffer.new_metadata
|
238
|
+
@c = create_chunk(primary, m, @es)
|
239
|
+
end
|
240
|
+
|
241
|
+
test 'normal path when compress option is gzip' do
|
242
|
+
d = create_driver
|
243
|
+
path = d.instance.write(@c)
|
244
|
+
assert_equal "#{TMP_DIR}/out_file_test.0.gz", path
|
245
|
+
end
|
246
|
+
|
247
|
+
test 'normal path when compress option is default' do
|
248
|
+
d = create_driver %[
|
249
|
+
directory #{TMP_DIR}
|
250
|
+
basename out_file_test
|
251
|
+
]
|
252
|
+
path = d.instance.write(@c)
|
253
|
+
assert_equal "#{TMP_DIR}/out_file_test.0", path
|
254
|
+
end
|
255
|
+
|
256
|
+
test 'normal path when append option is true' do
|
257
|
+
d = create_driver %[
|
258
|
+
directory #{TMP_DIR}
|
259
|
+
append true
|
260
|
+
]
|
261
|
+
path = d.instance.write(@c)
|
262
|
+
assert_equal "#{TMP_DIR}/dump.bin", path
|
263
|
+
end
|
264
|
+
|
265
|
+
test 'path with ${chunk_id}' do
|
266
|
+
d = create_driver %[
|
267
|
+
directory #{TMP_DIR}
|
268
|
+
basename out_file_chunk_id_${chunk_id}
|
269
|
+
]
|
270
|
+
path = d.instance.write(@c)
|
271
|
+
if File.basename(path) =~ /out_file_chunk_id_([-_.@a-zA-Z0-9].*).0/
|
272
|
+
unique_id = Fluent::UniqueId.hex(Fluent::UniqueId.generate)
|
273
|
+
assert_equal unique_id.size, $1.size, "chunk_id size is mismatched"
|
274
|
+
else
|
275
|
+
flunk "chunk_id is not included in the path"
|
276
|
+
end
|
277
|
+
end
|
278
|
+
|
279
|
+
data(
|
280
|
+
invalid_tag: [/tag/, '${tag}'],
|
281
|
+
invalid_tag0: [/tag\[0\]/, '${tag[0]}'],
|
282
|
+
invalid_variable: [/dummy/, '${dummy}'],
|
283
|
+
invalid_timeformat: [/time/, '%Y%m%d'],
|
284
|
+
)
|
285
|
+
test 'raise an error when basename includes incompatible placeholder' do |(expected_message, invalid_basename)|
|
286
|
+
c = Fluent::Test::Driver::Output.new(Fluent::Plugin::SecondaryFileOutput)
|
287
|
+
c.instance.acts_as_secondary(DummyOutput.new)
|
288
|
+
|
289
|
+
assert_raise_message(expected_message) do
|
290
|
+
c.configure %[
|
291
|
+
directory #{TMP_DIR}/
|
292
|
+
basename #{invalid_basename}
|
293
|
+
compress gzip
|
294
|
+
]
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
298
|
+
data(
|
299
|
+
invalid_tag: [/tag/, '${tag}'],
|
300
|
+
invalid_tag0: [/tag\[0\]/, '${tag[0]}'],
|
301
|
+
invalid_variable: [/dummy/, '${dummy}'],
|
302
|
+
invalid_timeformat: [/time/, '%Y%m%d'],
|
303
|
+
)
|
304
|
+
test 'raise an error when directory includes incompatible placeholder' do |(expected_message, invalid_directory)|
|
305
|
+
c = Fluent::Test::Driver::Output.new(Fluent::Plugin::SecondaryFileOutput)
|
306
|
+
c.instance.acts_as_secondary(DummyOutput.new)
|
307
|
+
|
308
|
+
assert_raise_message(expected_message) do
|
309
|
+
c.configure %[
|
310
|
+
directory #{invalid_directory}/
|
311
|
+
compress gzip
|
312
|
+
]
|
313
|
+
end
|
314
|
+
end
|
315
|
+
|
316
|
+
test 'basename includes tag' do
|
317
|
+
primary = create_primary(config_element('buffer', 'tag'))
|
318
|
+
|
319
|
+
d = create_driver(%[
|
320
|
+
directory #{TMP_DIR}/
|
321
|
+
basename cool_${tag}
|
322
|
+
compress gzip
|
323
|
+
], primary)
|
324
|
+
|
325
|
+
m = primary.buffer.new_metadata(tag: 'test.dummy')
|
326
|
+
c = create_chunk(primary, m, @es)
|
327
|
+
|
328
|
+
path = d.instance.write(c)
|
329
|
+
assert_equal "#{TMP_DIR}/cool_test.dummy.0.gz", path
|
330
|
+
end
|
331
|
+
|
332
|
+
test 'basename includes /tag[\d+]/' do
|
333
|
+
primary = create_primary(config_element('buffer', 'tag'))
|
334
|
+
|
335
|
+
d = create_driver(%[
|
336
|
+
directory #{TMP_DIR}/
|
337
|
+
basename cool_${tag[0]}_${tag[1]}
|
338
|
+
compress gzip
|
339
|
+
], primary)
|
340
|
+
|
341
|
+
m = primary.buffer.new_metadata(tag: 'test.dummy')
|
342
|
+
c = create_chunk(primary, m, @es)
|
343
|
+
|
344
|
+
path = d.instance.write(c)
|
345
|
+
assert_equal "#{TMP_DIR}/cool_test_dummy.0.gz", path
|
346
|
+
end
|
347
|
+
|
348
|
+
test 'basename includes time format' do
|
349
|
+
primary = create_primary(
|
350
|
+
config_element('buffer', 'time', { 'timekey_zone' => '+0900', 'timekey' => 1 })
|
351
|
+
)
|
352
|
+
|
353
|
+
d = create_driver(%[
|
354
|
+
directory #{TMP_DIR}/
|
355
|
+
basename cool_%Y%m%d%H
|
356
|
+
compress gzip
|
357
|
+
], primary)
|
358
|
+
|
359
|
+
m = primary.buffer.new_metadata(timekey: event_time("2011-01-02 13:14:15 UTC"))
|
360
|
+
c = create_chunk(primary, m, @es)
|
361
|
+
|
362
|
+
path = d.instance.write(c)
|
363
|
+
assert_equal "#{TMP_DIR}/cool_2011010222.0.gz", path
|
364
|
+
end
|
365
|
+
|
366
|
+
test 'basename includes time format with timekey_use_utc option' do
|
367
|
+
primary = create_primary(
|
368
|
+
config_element('buffer', 'time', { 'timekey_zone' => '+0900', 'timekey' => 1, 'timekey_use_utc' => true })
|
369
|
+
)
|
370
|
+
|
371
|
+
d = create_driver(%[
|
372
|
+
directory #{TMP_DIR}/
|
373
|
+
basename cool_%Y%m%d%H
|
374
|
+
compress gzip
|
375
|
+
], primary)
|
376
|
+
|
377
|
+
m = primary.buffer.new_metadata(timekey: event_time("2011-01-02 13:14:15 UTC"))
|
378
|
+
c = create_chunk(primary, m, @es)
|
379
|
+
|
380
|
+
path = d.instance.write(c)
|
381
|
+
assert_equal "#{TMP_DIR}/cool_2011010213.0.gz", path
|
382
|
+
end
|
383
|
+
|
384
|
+
test 'basename includes variable' do
|
385
|
+
primary = create_primary(config_element('buffer', 'test1'))
|
386
|
+
|
387
|
+
d = create_driver(%[
|
388
|
+
directory #{TMP_DIR}/
|
389
|
+
basename cool_${test1}
|
390
|
+
compress gzip
|
391
|
+
], primary)
|
392
|
+
|
393
|
+
m = primary.buffer.new_metadata(variables: { "test1".to_sym => "dummy" })
|
394
|
+
c = create_chunk(primary, m, @es)
|
395
|
+
|
396
|
+
path = d.instance.write(c)
|
397
|
+
assert_equal "#{TMP_DIR}/cool_dummy.0.gz", path
|
398
|
+
end
|
399
|
+
|
400
|
+
test 'basename includes unnecessary variable' do
|
401
|
+
primary = create_primary(config_element('buffer', 'test1'))
|
402
|
+
c = Fluent::Test::Driver::Output.new(Fluent::Plugin::SecondaryFileOutput)
|
403
|
+
c.instance.acts_as_secondary(primary)
|
404
|
+
|
405
|
+
assert_raise_message(/test2/) do
|
406
|
+
c.configure %[
|
407
|
+
directory #{TMP_DIR}/
|
408
|
+
basename ${test1}_${test2}
|
409
|
+
compress gzip
|
410
|
+
]
|
411
|
+
end
|
412
|
+
end
|
413
|
+
|
414
|
+
test 'basename includes tag, time format, and variables' do
|
415
|
+
primary = create_primary(
|
416
|
+
config_element('buffer', 'time,tag,test1', { 'timekey_zone' => '+0000', 'timekey' => 1 })
|
417
|
+
)
|
418
|
+
|
419
|
+
d = create_driver(%[
|
420
|
+
directory #{TMP_DIR}/
|
421
|
+
basename cool_%Y%m%d%H_${tag}_${test1}
|
422
|
+
compress gzip
|
423
|
+
], primary)
|
424
|
+
|
425
|
+
m = primary.buffer.new_metadata(
|
426
|
+
timekey: event_time("2011-01-02 13:14:15 UTC"),
|
427
|
+
tag: 'test.tag',
|
428
|
+
variables: { "test1".to_sym => "dummy" }
|
429
|
+
)
|
430
|
+
|
431
|
+
c = create_chunk(primary, m, @es)
|
432
|
+
|
433
|
+
path = d.instance.write(c)
|
434
|
+
assert_equal "#{TMP_DIR}/cool_2011010213_test.tag_dummy.0.gz", path
|
435
|
+
end
|
436
|
+
|
437
|
+
test 'directory includes tag, time format, and variables' do
|
438
|
+
primary = create_primary(
|
439
|
+
config_element('buffer', 'time,tag,test1', { 'timekey_zone' => '+0000', 'timekey' => 1 })
|
440
|
+
)
|
441
|
+
|
442
|
+
d = create_driver(%[
|
443
|
+
directory #{TMP_DIR}/%Y%m%d%H/${tag}/${test1}
|
444
|
+
compress gzip
|
445
|
+
], primary)
|
446
|
+
|
447
|
+
m = primary.buffer.new_metadata(
|
448
|
+
timekey: event_time("2011-01-02 13:14:15 UTC"),
|
449
|
+
tag: 'test.tag',
|
450
|
+
variables: { "test1".to_sym => "dummy" }
|
451
|
+
)
|
452
|
+
c = create_chunk(primary, m, @es)
|
453
|
+
|
454
|
+
path = d.instance.write(c)
|
455
|
+
assert_equal "#{TMP_DIR}/2011010213/test.tag/dummy/dump.bin.0.gz", path
|
456
|
+
end
|
457
|
+
end
|
458
|
+
end
|
@@ -0,0 +1,205 @@
|
|
1
|
+
require_relative '../helper'
|
2
|
+
require 'fluent/test/driver/output'
|
3
|
+
require 'fluent/plugin/out_stdout'
|
4
|
+
|
5
|
+
class StdoutOutputTest < Test::Unit::TestCase
|
6
|
+
def setup
|
7
|
+
Fluent::Test.setup
|
8
|
+
end
|
9
|
+
|
10
|
+
CONFIG = %[
|
11
|
+
]
|
12
|
+
TIME_FORMAT = '%Y-%m-%d %H:%M:%S.%9N %z'
|
13
|
+
|
14
|
+
def create_driver(conf = CONFIG)
|
15
|
+
Fluent::Test::Driver::Output.new(Fluent::Plugin::StdoutOutput).configure(conf)
|
16
|
+
end
|
17
|
+
|
18
|
+
sub_test_case 'non-buffered' do
|
19
|
+
test 'configure' do
|
20
|
+
d = create_driver
|
21
|
+
assert_equal 1, d.instance.formatter_configs.size # init: true
|
22
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
23
|
+
assert_equal 'json', d.instance.formatter.output_type
|
24
|
+
end
|
25
|
+
|
26
|
+
test 'configure output_type' do
|
27
|
+
d = create_driver(CONFIG + "\noutput_type json")
|
28
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
29
|
+
assert_equal 'json', d.instance.formatter.output_type
|
30
|
+
|
31
|
+
d = create_driver(CONFIG + "\noutput_type hash")
|
32
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
33
|
+
assert_equal 'hash', d.instance.formatter.output_type
|
34
|
+
|
35
|
+
assert_raise(Fluent::ConfigError) do
|
36
|
+
d = create_driver(CONFIG + "\noutput_type foo")
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
test 'configure with time_format' do
|
41
|
+
d = create_driver(CONFIG + <<-CONF)
|
42
|
+
<format>
|
43
|
+
@type stdout
|
44
|
+
time_format %Y-%m-%dT%H:%M:%S.%L%z
|
45
|
+
</format>
|
46
|
+
CONF
|
47
|
+
|
48
|
+
time = event_time
|
49
|
+
out = capture_log do
|
50
|
+
d.run(default_tag: 'test') do
|
51
|
+
d.feed(time, {'test' => 'test'})
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
t = Time.at(time).localtime.strftime("%Y-%m-%dT%H:%M:%S.%L%z")
|
56
|
+
assert_equal "#{t} test: {\"test\":\"test\"}\n", out
|
57
|
+
end
|
58
|
+
|
59
|
+
test 'emit with default configuration' do
|
60
|
+
d = create_driver
|
61
|
+
time = event_time()
|
62
|
+
out = capture_log do
|
63
|
+
d.run(default_tag: 'test') do
|
64
|
+
d.feed(time, {'test' => 'test1'})
|
65
|
+
end
|
66
|
+
end
|
67
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\":\"test1\"}\n", out
|
68
|
+
end
|
69
|
+
|
70
|
+
data('oj' => 'oj', 'yajl' => 'yajl')
|
71
|
+
test 'emit in json format' do |data|
|
72
|
+
d = create_driver(CONFIG + "\noutput_type json\njson_parser #{data}")
|
73
|
+
time = event_time()
|
74
|
+
out = capture_log do
|
75
|
+
d.run(default_tag: 'test') do
|
76
|
+
d.feed(time, {'test' => 'test1'})
|
77
|
+
end
|
78
|
+
end
|
79
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\":\"test1\"}\n", out
|
80
|
+
|
81
|
+
if data == 'yajl'
|
82
|
+
# NOTE: Float::NAN is not jsonable
|
83
|
+
assert_raise(Yajl::EncodeError) { d.feed('test', time, {'test' => Float::NAN}) }
|
84
|
+
else
|
85
|
+
out = capture_log { d.feed('test', time, {'test' => Float::NAN}) }
|
86
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\":NaN}\n", out
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
test 'emit in hash format' do
|
91
|
+
d = create_driver(CONFIG + "\noutput_type hash")
|
92
|
+
time = event_time()
|
93
|
+
out = capture_log do
|
94
|
+
d.run(default_tag: 'test') do
|
95
|
+
d.feed(time, {'test' => 'test2'})
|
96
|
+
end
|
97
|
+
end
|
98
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\"=>\"test2\"}\n", out
|
99
|
+
|
100
|
+
# NOTE: Float::NAN is not jsonable, but hash string can output it.
|
101
|
+
out = capture_log { d.feed('test', time, {'test' => Float::NAN}) }
|
102
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\"=>NaN}\n", out
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
sub_test_case 'buffered' do
|
107
|
+
test 'configure' do
|
108
|
+
d = create_driver(config_element("ROOT", "", {}, [config_element("buffer")]))
|
109
|
+
assert_equal 1, d.instance.formatter_configs.size
|
110
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
111
|
+
assert_equal 'json', d.instance.formatter.output_type
|
112
|
+
assert_equal 10 * 1024, d.instance.buffer_config.chunk_limit_size
|
113
|
+
assert d.instance.buffer_config.flush_at_shutdown
|
114
|
+
assert_equal ['tag'], d.instance.buffer_config.chunk_keys
|
115
|
+
assert d.instance.chunk_key_tag
|
116
|
+
assert !d.instance.chunk_key_time
|
117
|
+
assert_equal [], d.instance.chunk_keys
|
118
|
+
end
|
119
|
+
|
120
|
+
test 'configure with output_type' do
|
121
|
+
d = create_driver(config_element("ROOT", "", {"output_type" => "json"}, [config_element("buffer")]))
|
122
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
123
|
+
assert_equal 'json', d.instance.formatter.output_type
|
124
|
+
|
125
|
+
d = create_driver(config_element("ROOT", "", {"output_type" => "hash"}, [config_element("buffer")]))
|
126
|
+
assert_kind_of Fluent::Plugin::StdoutFormatter, d.instance.formatter
|
127
|
+
assert_equal 'hash', d.instance.formatter.output_type
|
128
|
+
|
129
|
+
assert_raise(Fluent::ConfigError) do
|
130
|
+
create_driver(config_element("ROOT", "", {"output_type" => "foo"}, [config_element("buffer")]))
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
134
|
+
sub_test_case "emit with default config" do
|
135
|
+
test '#write(synchronous)' do
|
136
|
+
d = create_driver(config_element("ROOT", "", {}, [config_element("buffer")]))
|
137
|
+
time = event_time()
|
138
|
+
|
139
|
+
out = capture_log do
|
140
|
+
d.run(default_tag: 'test', flush: true) do
|
141
|
+
d.feed(time, {'test' => 'test'})
|
142
|
+
end
|
143
|
+
end
|
144
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\":\"test\"}\n", out
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
sub_test_case "emit json" do
|
149
|
+
data('oj' => 'oj', 'yajl' => 'yajl')
|
150
|
+
test '#write(synchronous)' do |data|
|
151
|
+
d = create_driver(config_element("ROOT", "", {"output_type" => "json", "json_parser" => data}, [config_element("buffer")]))
|
152
|
+
time = event_time()
|
153
|
+
|
154
|
+
out = capture_log do
|
155
|
+
d.run(default_tag: 'test', flush: true) do
|
156
|
+
d.feed(time, {'test' => 'test'})
|
157
|
+
end
|
158
|
+
end
|
159
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\":\"test\"}\n", out
|
160
|
+
end
|
161
|
+
end
|
162
|
+
|
163
|
+
sub_test_case 'emit hash' do
|
164
|
+
test '#write(synchronous)' do
|
165
|
+
d = create_driver(config_element("ROOT", "", {"output_type" => "hash"}, [config_element("buffer")]))
|
166
|
+
time = event_time()
|
167
|
+
|
168
|
+
out = capture_log do
|
169
|
+
d.run(default_tag: 'test', flush: true) do
|
170
|
+
d.feed(time, {'test' => 'test'})
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
assert_equal "#{Time.at(time).localtime.strftime(TIME_FORMAT)} test: {\"test\"=>\"test\"}\n", out
|
175
|
+
end
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
data(
|
180
|
+
'utc and !localtime' => "utc true\nlocaltime false",
|
181
|
+
'!utc and localtime' => "utc false\nlocaltime true")
|
182
|
+
test 'success when configure with localtime and utc' do |c|
|
183
|
+
assert_nothing_raised do
|
184
|
+
create_driver(CONFIG + c)
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
data('utc and localtime' => "utc true\nlocaltime true",
|
189
|
+
'!utc and !localtime' => "utc false\nlocaltime false")
|
190
|
+
test 'raise an error when configure with localtime and utc' do |c|
|
191
|
+
assert_raise(Fluent::ConfigError.new('both of utc and localtime are specified, use only one of them')) do
|
192
|
+
create_driver(CONFIG + c)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
# Capture the log output of the block given
|
197
|
+
def capture_log(&block)
|
198
|
+
tmp = $log
|
199
|
+
$log = StringIO.new
|
200
|
+
yield
|
201
|
+
return $log.string
|
202
|
+
ensure
|
203
|
+
$log = tmp
|
204
|
+
end
|
205
|
+
end
|