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,46 @@
|
|
1
|
+
require_relative 'helper'
|
2
|
+
require 'fluent/supervisor'
|
3
|
+
require 'fileutils'
|
4
|
+
|
5
|
+
class LoggerInitializerTest < ::Test::Unit::TestCase
|
6
|
+
TMP_DIR = File.expand_path(File.dirname(__FILE__) + "/tmp/logger_initializer#{ENV['TEST_ENV_NUMBER']}")
|
7
|
+
|
8
|
+
teardown do
|
9
|
+
begin
|
10
|
+
FileUtils.rm_rf(TMP_DIR)
|
11
|
+
rescue => _
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
test 'when path is given' do
|
16
|
+
path = File.join(TMP_DIR, 'fluent_with_path.log')
|
17
|
+
|
18
|
+
assert_false File.exist?(TMP_DIR)
|
19
|
+
logger = Fluent::Supervisor::LoggerInitializer.new(path, Fluent::Log::LEVEL_DEBUG, nil, nil, {})
|
20
|
+
mock.proxy(File).chmod(0o777, TMP_DIR).never
|
21
|
+
|
22
|
+
assert_nothing_raised do
|
23
|
+
logger.init(:supervisor, 0)
|
24
|
+
end
|
25
|
+
|
26
|
+
assert_true File.exist?(TMP_DIR)
|
27
|
+
end
|
28
|
+
|
29
|
+
test 'apply_options with log_dir_perm' do
|
30
|
+
omit "NTFS doesn't support UNIX like permissions" if Fluent.windows?
|
31
|
+
|
32
|
+
path = File.join(TMP_DIR, 'fluent_with_path.log')
|
33
|
+
|
34
|
+
assert_false File.exist?(TMP_DIR)
|
35
|
+
logger = Fluent::Supervisor::LoggerInitializer.new(path, Fluent::Log::LEVEL_DEBUG, nil, nil, {})
|
36
|
+
mock.proxy(File).chmod(0o777, TMP_DIR).once
|
37
|
+
|
38
|
+
assert_nothing_raised do
|
39
|
+
logger.init(:supervisor, 0)
|
40
|
+
end
|
41
|
+
|
42
|
+
logger.apply_options(log_dir_perm: 0o777)
|
43
|
+
assert_true File.exist?(TMP_DIR)
|
44
|
+
assert_equal 0o777, (File.stat(TMP_DIR).mode & 0xFFF)
|
45
|
+
end
|
46
|
+
end
|
data/test/test_match.rb
ADDED
@@ -0,0 +1,148 @@
|
|
1
|
+
require_relative 'helper'
|
2
|
+
require 'fluent/match'
|
3
|
+
|
4
|
+
class MatchTest < Test::Unit::TestCase
|
5
|
+
include Fluent
|
6
|
+
|
7
|
+
def test_simple
|
8
|
+
assert_glob_match('a', 'a')
|
9
|
+
assert_glob_match('a.b', 'a.b')
|
10
|
+
assert_glob_not_match('a', 'b')
|
11
|
+
assert_glob_not_match('a.b', 'aab')
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_wildcard
|
15
|
+
assert_glob_match('a*', 'a')
|
16
|
+
assert_glob_match('a*', 'ab')
|
17
|
+
assert_glob_match('a*', 'abc')
|
18
|
+
|
19
|
+
assert_glob_match('*a', 'a')
|
20
|
+
assert_glob_match('*a', 'ba')
|
21
|
+
assert_glob_match('*a', 'cba')
|
22
|
+
|
23
|
+
assert_glob_match('*a*', 'a')
|
24
|
+
assert_glob_match('*a*', 'ba')
|
25
|
+
assert_glob_match('*a*', 'ac')
|
26
|
+
assert_glob_match('*a*', 'bac')
|
27
|
+
|
28
|
+
assert_glob_not_match('a*', 'a.b')
|
29
|
+
assert_glob_not_match('a*', 'ab.c')
|
30
|
+
assert_glob_not_match('a*', 'ba')
|
31
|
+
assert_glob_not_match('*a', 'ab')
|
32
|
+
|
33
|
+
assert_glob_match('a.*', 'a.b')
|
34
|
+
assert_glob_match('a.*', 'a.c')
|
35
|
+
assert_glob_not_match('a.*', 'ab')
|
36
|
+
|
37
|
+
assert_glob_match('a.*.c', 'a.b.c')
|
38
|
+
assert_glob_match('a.*.c', 'a.c.c')
|
39
|
+
assert_glob_not_match('a.*.c', 'a.c')
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_recursive_wildcard
|
43
|
+
assert_glob_match('a.**', 'a')
|
44
|
+
assert_glob_not_match('a.**', 'ab')
|
45
|
+
assert_glob_not_match('a.**', 'abc')
|
46
|
+
assert_glob_match('a.**', 'a.b')
|
47
|
+
assert_glob_not_match('a.**', 'ab.c')
|
48
|
+
assert_glob_not_match('a.**', 'ab.d.e')
|
49
|
+
|
50
|
+
assert_glob_match('a**', 'a')
|
51
|
+
assert_glob_match('a**', 'ab')
|
52
|
+
assert_glob_match('a**', 'abc')
|
53
|
+
assert_glob_match('a**', 'a.b')
|
54
|
+
assert_glob_match('a**', 'ab.c')
|
55
|
+
assert_glob_match('a**', 'ab.d.e')
|
56
|
+
|
57
|
+
assert_glob_match('**.a', 'a')
|
58
|
+
assert_glob_not_match('**.a', 'ba')
|
59
|
+
assert_glob_not_match('**.a', 'c.ba')
|
60
|
+
assert_glob_match('**.a', 'b.a')
|
61
|
+
assert_glob_match('**.a', 'cb.a')
|
62
|
+
assert_glob_match('**.a', 'd.e.a')
|
63
|
+
|
64
|
+
assert_glob_match('**a', 'a')
|
65
|
+
assert_glob_match('**a', 'ba')
|
66
|
+
assert_glob_match('**a', 'c.ba')
|
67
|
+
assert_glob_match('**a', 'b.a')
|
68
|
+
assert_glob_match('**a', 'cb.a')
|
69
|
+
assert_glob_match('**a', 'd.e.a')
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_or
|
73
|
+
assert_glob_match('a.{b,c}', 'a.b')
|
74
|
+
assert_glob_match('a.{b,c}', 'a.c')
|
75
|
+
assert_glob_not_match('a.{b,c}', 'a.d')
|
76
|
+
|
77
|
+
assert_glob_match('a.{b,c}.**', 'a.b')
|
78
|
+
assert_glob_match('a.{b,c}.**', 'a.c')
|
79
|
+
assert_glob_not_match('a.{b,c}.**', 'a.d')
|
80
|
+
assert_glob_not_match('a.{b,c}.**', 'a.cd')
|
81
|
+
|
82
|
+
assert_glob_match('a.{b.**,c}', 'a.b')
|
83
|
+
assert_glob_match('a.{b.**,c}', 'a.b.c')
|
84
|
+
assert_glob_match('a.{b.**,c}', 'a.c')
|
85
|
+
assert_glob_not_match('a.{b.**,c}', 'a.c.d')
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_multi_pattern_or
|
89
|
+
assert_or_match('a.b a.c', 'a.b')
|
90
|
+
assert_or_match('a.b a.c', 'a.c')
|
91
|
+
assert_or_not_match('a.b a.c', 'a.d')
|
92
|
+
|
93
|
+
assert_or_match('a.b.** a.c.**', 'a.b')
|
94
|
+
assert_or_match('a.b.** a.c.**', 'a.c')
|
95
|
+
assert_or_not_match('a.b.** a.c.**', 'a.d')
|
96
|
+
assert_or_not_match('a.b.** a.c.**', 'a.cd')
|
97
|
+
|
98
|
+
assert_or_match('a.b.** a.c', 'a.b')
|
99
|
+
assert_or_match('a.b.** a.c', 'a.b.c')
|
100
|
+
assert_or_match('a.b.** a.c', 'a.c')
|
101
|
+
assert_or_not_match('a.b.** a.c', 'a.c.d')
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_regex_pattern
|
105
|
+
assert_glob_match('/a/', 'a')
|
106
|
+
assert_glob_not_match('/a/', 'abc')
|
107
|
+
assert_glob_match('/a.*/', 'abc')
|
108
|
+
assert_glob_not_match('/b.*/', 'abc')
|
109
|
+
assert_glob_match('/a\..*/', 'a.b.c')
|
110
|
+
assert_glob_not_match('/(?!a\.).*/', 'a.b.c')
|
111
|
+
assert_glob_not_match('/a\..*/', 'b.b.c')
|
112
|
+
assert_glob_match('/(?!a\.).*/', 'b.b.c')
|
113
|
+
end
|
114
|
+
|
115
|
+
#def test_character_class
|
116
|
+
# assert_match('[a]', 'a')
|
117
|
+
# assert_match('[ab]', 'a')
|
118
|
+
# assert_match('[ab]', 'b')
|
119
|
+
# assert_not_match('[ab]', 'c')
|
120
|
+
#
|
121
|
+
# assert_match('[a-b]', 'a')
|
122
|
+
# assert_match('[a-b]', 'a')
|
123
|
+
# assert_match('[a-b]', 'b')
|
124
|
+
# assert_not_match('[a-b]', 'c')
|
125
|
+
#
|
126
|
+
# assert_match('[a-b0-9]', 'a')
|
127
|
+
# assert_match('[a-b0-9]', '0')
|
128
|
+
# assert_not_match('[a-b0-9]', 'c')
|
129
|
+
#end
|
130
|
+
|
131
|
+
def assert_glob_match(pat, str)
|
132
|
+
assert_true GlobMatchPattern.new(pat).match(str)
|
133
|
+
assert_true EventRouter::Rule.new(pat, nil).match?(str)
|
134
|
+
end
|
135
|
+
|
136
|
+
def assert_glob_not_match(pat, str)
|
137
|
+
assert_false GlobMatchPattern.new(pat).match(str)
|
138
|
+
assert_false EventRouter::Rule.new(pat, nil).match?(str)
|
139
|
+
end
|
140
|
+
|
141
|
+
def assert_or_match(pats, str)
|
142
|
+
assert_true EventRouter::Rule.new(pats, nil).match?(str)
|
143
|
+
end
|
144
|
+
|
145
|
+
def assert_or_not_match(pats, str)
|
146
|
+
assert_false EventRouter::Rule.new(pats, nil).match?(str)
|
147
|
+
end
|
148
|
+
end
|
data/test/test_mixin.rb
ADDED
@@ -0,0 +1,351 @@
|
|
1
|
+
require_relative 'helper'
|
2
|
+
require 'fluent/mixin'
|
3
|
+
require 'fluent/env'
|
4
|
+
require 'fluent/plugin'
|
5
|
+
require 'fluent/config'
|
6
|
+
require 'fluent/test'
|
7
|
+
require 'timecop'
|
8
|
+
|
9
|
+
module MixinTest
|
10
|
+
module Utils
|
11
|
+
def setup
|
12
|
+
super
|
13
|
+
Fluent::Test.setup
|
14
|
+
@time = Time.utc(1,2,3,4,5,2010,nil,nil,nil,nil)
|
15
|
+
Timecop.freeze(@time)
|
16
|
+
end
|
17
|
+
|
18
|
+
def teardown
|
19
|
+
super
|
20
|
+
Timecop.return
|
21
|
+
GC.start
|
22
|
+
end
|
23
|
+
|
24
|
+
module Checker
|
25
|
+
extend self
|
26
|
+
def format_check(tag, time, record); end
|
27
|
+
end
|
28
|
+
|
29
|
+
@@num = 0
|
30
|
+
|
31
|
+
def create_register_output_name
|
32
|
+
@@num += 1
|
33
|
+
"mixin_text_#{@@num}"
|
34
|
+
end
|
35
|
+
|
36
|
+
def format_check(hash, tagname = 'test')
|
37
|
+
mock(Checker).format_check(tagname, @time.to_i, hash)
|
38
|
+
end
|
39
|
+
|
40
|
+
def create_driver(include_klass, conf = '', tag = "test", &block)
|
41
|
+
register_output_name = create_register_output_name
|
42
|
+
include_klasses = [include_klass].flatten
|
43
|
+
|
44
|
+
klass = Class.new(Fluent::BufferedOutput) {
|
45
|
+
include_klasses.each {|k| include k }
|
46
|
+
|
47
|
+
Fluent::Plugin.register_output(register_output_name, self)
|
48
|
+
def format(tag, time, record)
|
49
|
+
Checker.format_check(tag, time, record)
|
50
|
+
[tag, time, record].to_msgpack
|
51
|
+
end
|
52
|
+
|
53
|
+
def write(chunk); end
|
54
|
+
}
|
55
|
+
|
56
|
+
if block
|
57
|
+
Utils.const_set("MixinTestClass#{@@num}", klass)
|
58
|
+
klass.module_eval(&block)
|
59
|
+
end
|
60
|
+
|
61
|
+
Fluent::Test::BufferedOutputTestDriver.new(klass, tag) {
|
62
|
+
}.configure("type #{register_output_name}" + conf)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
class SetTagKeyMixinText < Test::Unit::TestCase
|
67
|
+
include Utils
|
68
|
+
|
69
|
+
def test_tag_key_default
|
70
|
+
format_check({
|
71
|
+
'a' => 1
|
72
|
+
})
|
73
|
+
|
74
|
+
d = create_driver(Fluent::SetTagKeyMixin, %[
|
75
|
+
])
|
76
|
+
d.emit({'a' => 1})
|
77
|
+
d.run
|
78
|
+
end
|
79
|
+
|
80
|
+
def test_include_tag_key_true
|
81
|
+
format_check({
|
82
|
+
'tag' => 'test',
|
83
|
+
'a' => 1
|
84
|
+
})
|
85
|
+
|
86
|
+
d = create_driver(Fluent::SetTagKeyMixin, %[
|
87
|
+
include_tag_key true
|
88
|
+
])
|
89
|
+
|
90
|
+
d.emit({'a' => 1})
|
91
|
+
d.run
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_include_tag_key_false
|
95
|
+
format_check({
|
96
|
+
'a' => 1
|
97
|
+
})
|
98
|
+
|
99
|
+
d = create_driver(Fluent::SetTagKeyMixin, %[
|
100
|
+
include_tag_key false
|
101
|
+
])
|
102
|
+
d.emit({'a' => 1})
|
103
|
+
d.run
|
104
|
+
end
|
105
|
+
|
106
|
+
def test_tag_key_set
|
107
|
+
format_check({
|
108
|
+
'tag_key_changed' => 'test',
|
109
|
+
'a' => 1
|
110
|
+
})
|
111
|
+
|
112
|
+
d = create_driver(Fluent::SetTagKeyMixin, %[
|
113
|
+
include_tag_key true
|
114
|
+
tag_key tag_key_changed
|
115
|
+
])
|
116
|
+
|
117
|
+
d.emit({'a' => 1})
|
118
|
+
d.run
|
119
|
+
end
|
120
|
+
|
121
|
+
sub_test_case "mixin" do
|
122
|
+
data(
|
123
|
+
'true' => true,
|
124
|
+
'false' => false)
|
125
|
+
test 'include_tag_key' do |param|
|
126
|
+
d = create_driver(Fluent::SetTagKeyMixin) {
|
127
|
+
config_set_default :include_tag_key, param
|
128
|
+
}
|
129
|
+
|
130
|
+
assert_equal(param, d.instance.include_tag_key)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
class SetTimeKeyMixinText < Test::Unit::TestCase
|
136
|
+
include Utils
|
137
|
+
|
138
|
+
def test_time_key_default
|
139
|
+
format_check({
|
140
|
+
'a' => 1
|
141
|
+
})
|
142
|
+
|
143
|
+
d = create_driver(Fluent::SetTimeKeyMixin, %[
|
144
|
+
])
|
145
|
+
|
146
|
+
d.emit({'a' => 1})
|
147
|
+
d.run
|
148
|
+
end
|
149
|
+
|
150
|
+
def test_include_time_key_true
|
151
|
+
format_check({
|
152
|
+
'time' => "2010-05-04T03:02:01Z",
|
153
|
+
'a' => 1
|
154
|
+
})
|
155
|
+
|
156
|
+
d = create_driver(Fluent::SetTimeKeyMixin, %[
|
157
|
+
include_time_key true
|
158
|
+
])
|
159
|
+
|
160
|
+
d.emit({'a' => 1})
|
161
|
+
d.run
|
162
|
+
end
|
163
|
+
|
164
|
+
def test_time_format
|
165
|
+
format_check({
|
166
|
+
'time' => "20100504",
|
167
|
+
'a' => 1
|
168
|
+
})
|
169
|
+
|
170
|
+
d = create_driver(Fluent::SetTimeKeyMixin, %[
|
171
|
+
include_time_key true
|
172
|
+
time_format %Y%m%d
|
173
|
+
])
|
174
|
+
|
175
|
+
d.emit({'a' => 1})
|
176
|
+
d.run
|
177
|
+
end
|
178
|
+
|
179
|
+
def test_timezone_1
|
180
|
+
format_check({
|
181
|
+
'time' => "2010-05-03T17:02:01-10:00",
|
182
|
+
'a' => 1
|
183
|
+
})
|
184
|
+
|
185
|
+
d = create_driver(Fluent::SetTimeKeyMixin, %[
|
186
|
+
include_time_key true
|
187
|
+
timezone Pacific/Honolulu
|
188
|
+
])
|
189
|
+
|
190
|
+
d.emit({'a' => 1})
|
191
|
+
d.run
|
192
|
+
end
|
193
|
+
|
194
|
+
def test_timezone_2
|
195
|
+
format_check({
|
196
|
+
'time' => "2010-05-04T08:32:01+05:30",
|
197
|
+
'a' => 1
|
198
|
+
})
|
199
|
+
|
200
|
+
d = create_driver(Fluent::SetTimeKeyMixin, %[
|
201
|
+
include_time_key true
|
202
|
+
timezone +05:30
|
203
|
+
])
|
204
|
+
|
205
|
+
d.emit({'a' => 1})
|
206
|
+
d.run
|
207
|
+
end
|
208
|
+
|
209
|
+
def test_timezone_invalid
|
210
|
+
assert_raise(Fluent::ConfigError) do
|
211
|
+
create_driver(Fluent::SetTimeKeyMixin, %[
|
212
|
+
include_time_key true
|
213
|
+
timezone Invalid/Invalid
|
214
|
+
])
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
sub_test_case "mixin" do
|
219
|
+
data(
|
220
|
+
'true' => true,
|
221
|
+
'false' => false)
|
222
|
+
test 'include_time_key' do |param|
|
223
|
+
d = create_driver(Fluent::SetTimeKeyMixin) {
|
224
|
+
config_set_default :include_time_key, param
|
225
|
+
}
|
226
|
+
|
227
|
+
assert_equal(param, d.instance.include_time_key)
|
228
|
+
end
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
class HandleTagMixinTest < Test::Unit::TestCase
|
233
|
+
include Utils
|
234
|
+
|
235
|
+
def test_add_tag_prefix
|
236
|
+
format_check({
|
237
|
+
'a' => 1
|
238
|
+
}, 'tag_prefix.test')
|
239
|
+
format_check({
|
240
|
+
'a' => 2
|
241
|
+
}, 'tag_prefix.test')
|
242
|
+
|
243
|
+
d = create_driver(Fluent::HandleTagNameMixin, %[
|
244
|
+
add_tag_prefix tag_prefix.
|
245
|
+
include_tag_key true
|
246
|
+
])
|
247
|
+
|
248
|
+
d.emit({'a' => 1})
|
249
|
+
d.emit({'a' => 2})
|
250
|
+
d.run
|
251
|
+
end
|
252
|
+
|
253
|
+
def test_add_tag_suffix
|
254
|
+
format_check({
|
255
|
+
'a' => 1
|
256
|
+
}, 'test.test_suffix')
|
257
|
+
format_check({
|
258
|
+
'a' => 2
|
259
|
+
}, 'test.test_suffix')
|
260
|
+
|
261
|
+
d = create_driver(Fluent::HandleTagNameMixin, %[
|
262
|
+
add_tag_suffix .test_suffix
|
263
|
+
include_tag_key true
|
264
|
+
])
|
265
|
+
|
266
|
+
d.emit({'a' => 1})
|
267
|
+
d.emit({'a' => 2})
|
268
|
+
d.run
|
269
|
+
end
|
270
|
+
|
271
|
+
def test_remove_tag_prefix
|
272
|
+
format_check({
|
273
|
+
'a' => 1
|
274
|
+
}, 'test')
|
275
|
+
format_check({
|
276
|
+
'a' => 2
|
277
|
+
}, 'test')
|
278
|
+
|
279
|
+
d = create_driver(Fluent::HandleTagNameMixin, %[
|
280
|
+
remove_tag_prefix te
|
281
|
+
include_tag_key true
|
282
|
+
], "tetest")
|
283
|
+
|
284
|
+
d.emit({'a' => 1})
|
285
|
+
d.emit({'a' => 2})
|
286
|
+
d.run
|
287
|
+
end
|
288
|
+
|
289
|
+
def test_remove_tag_suffix
|
290
|
+
format_check({
|
291
|
+
'a' => 1
|
292
|
+
}, 'test')
|
293
|
+
format_check({
|
294
|
+
'a' => 2
|
295
|
+
}, 'test')
|
296
|
+
|
297
|
+
d = create_driver(Fluent::HandleTagNameMixin, %[
|
298
|
+
remove_tag_suffix st
|
299
|
+
include_tag_key true
|
300
|
+
], "testst")
|
301
|
+
|
302
|
+
d.emit({'a' => 1})
|
303
|
+
d.emit({'a' => 2})
|
304
|
+
d.run
|
305
|
+
end
|
306
|
+
|
307
|
+
def test_mix_tag_handle
|
308
|
+
format_check({
|
309
|
+
'a' => 1
|
310
|
+
}, 'prefix.t')
|
311
|
+
|
312
|
+
d = create_driver(Fluent::HandleTagNameMixin, %[
|
313
|
+
remove_tag_prefix tes
|
314
|
+
add_tag_prefix prefix.
|
315
|
+
])
|
316
|
+
|
317
|
+
d.emit({'a' => 1})
|
318
|
+
d.run
|
319
|
+
end
|
320
|
+
|
321
|
+
def test_with_set_tag_key_mixin
|
322
|
+
format_check({
|
323
|
+
'tag' => 'tag_prefix.test',
|
324
|
+
'a' => 1
|
325
|
+
}, 'tag_prefix.test')
|
326
|
+
|
327
|
+
d = create_driver([Fluent::SetTagKeyMixin, Fluent::HandleTagNameMixin], %[
|
328
|
+
add_tag_prefix tag_prefix.
|
329
|
+
include_tag_key true
|
330
|
+
])
|
331
|
+
|
332
|
+
d.emit({'a' => 1})
|
333
|
+
d.run
|
334
|
+
end
|
335
|
+
|
336
|
+
def test_with_set_tag_key_mixin_include_order_reverse
|
337
|
+
format_check({
|
338
|
+
'tag' => 'tag_prefix.test',
|
339
|
+
'a' => 1
|
340
|
+
}, 'tag_prefix.test')
|
341
|
+
|
342
|
+
d = create_driver([Fluent::HandleTagNameMixin, Fluent::SetTagKeyMixin], %[
|
343
|
+
add_tag_prefix tag_prefix.
|
344
|
+
include_tag_key true
|
345
|
+
])
|
346
|
+
|
347
|
+
d.emit({'a' => 1})
|
348
|
+
d.run
|
349
|
+
end
|
350
|
+
end
|
351
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require_relative 'helper'
|
2
|
+
require 'fluent/msgpack_factory'
|
3
|
+
|
4
|
+
class MessagePackFactoryTest < Test::Unit::TestCase
|
5
|
+
test 'call log.warn only once' do
|
6
|
+
klass = Class.new do
|
7
|
+
include Fluent::MessagePackFactory::Mixin
|
8
|
+
end
|
9
|
+
|
10
|
+
mp = klass.new
|
11
|
+
|
12
|
+
mock.proxy($log).warn(anything).once
|
13
|
+
|
14
|
+
assert mp.msgpack_factory
|
15
|
+
assert mp.msgpack_factory
|
16
|
+
assert mp.msgpack_factory
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require_relative 'helper'
|
2
|
+
require 'fluent/test'
|
3
|
+
require 'fluent/oj_options'
|
4
|
+
|
5
|
+
class OjOptionsTest < ::Test::Unit::TestCase
|
6
|
+
begin
|
7
|
+
require 'oj'
|
8
|
+
@@oj_is_avaibale = true
|
9
|
+
rescue LoadError
|
10
|
+
@@oj_is_avaibale = false
|
11
|
+
end
|
12
|
+
|
13
|
+
setup do
|
14
|
+
@orig_env = {}
|
15
|
+
ENV.each do |key, value|
|
16
|
+
@orig_env[key] = value if key.start_with?("FLUENT_OJ_OPTION_")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
teardown do
|
21
|
+
ENV.delete_if { |key| key.start_with?("FLUENT_OJ_OPTION_") }
|
22
|
+
@orig_env.each { |key, value| ENV[key] = value }
|
23
|
+
end
|
24
|
+
|
25
|
+
test "available?" do
|
26
|
+
assert_equal(@@oj_is_avaibale, Fluent::OjOptions.available?)
|
27
|
+
end
|
28
|
+
|
29
|
+
sub_test_case "set by environment variable" do
|
30
|
+
test "when no env vars set, returns default options" do
|
31
|
+
ENV.delete_if { |key| key.start_with?("FLUENT_OJ_OPTION_") }
|
32
|
+
defaults = Fluent::OjOptions::DEFAULTS
|
33
|
+
assert_equal(defaults, Fluent::OjOptions.load_env)
|
34
|
+
assert_equal(defaults, Oj.default_options.slice(*defaults.keys)) if @@oj_is_avaibale
|
35
|
+
end
|
36
|
+
|
37
|
+
test "valid env var passed with valid value, default is overridden" do
|
38
|
+
ENV["FLUENT_OJ_OPTION_BIGDECIMAL_LOAD"] = ":bigdecimal"
|
39
|
+
assert_equal(:bigdecimal, Fluent::OjOptions.load_env[:bigdecimal_load])
|
40
|
+
assert_equal(:bigdecimal, Oj.default_options[:bigdecimal_load]) if @@oj_is_avaibale
|
41
|
+
end
|
42
|
+
|
43
|
+
test "valid env var passed with invalid value, default is not overriden" do
|
44
|
+
ENV["FLUENT_OJ_OPTION_BIGDECIMAL_LOAD"] = ":conor"
|
45
|
+
assert_equal(:float, Fluent::OjOptions.load_env[:bigdecimal_load])
|
46
|
+
assert_equal(:float, Oj.default_options[:bigdecimal_load]) if @@oj_is_avaibale
|
47
|
+
end
|
48
|
+
|
49
|
+
test "invalid env var passed, nothing done with it" do
|
50
|
+
ENV["FLUENT_OJ_OPTION_CONOR"] = ":conor"
|
51
|
+
assert_equal(nil, Fluent::OjOptions.load_env[:conor])
|
52
|
+
assert_equal(nil, Oj.default_options[:conor]) if @@oj_is_avaibale
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|