fluentd 0.12.40 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fluentd might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/.github/ISSUE_TEMPLATE/bug_report.md +39 -0
- data/.github/ISSUE_TEMPLATE/feature_request.md +23 -0
- data/.github/ISSUE_TEMPLATE.md +17 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +13 -0
- data/.gitignore +5 -0
- data/.gitlab/cicd-template.yaml +10 -0
- data/.gitlab-ci.yml +147 -0
- data/.travis.yml +56 -20
- data/ADOPTERS.md +5 -0
- data/CHANGELOG.md +1369 -0
- data/CONTRIBUTING.md +16 -5
- data/GOVERNANCE.md +55 -0
- data/Gemfile +5 -0
- data/GithubWorkflow.md +78 -0
- data/LICENSE +202 -0
- data/MAINTAINERS.md +7 -0
- data/README.md +23 -11
- data/Rakefile +48 -2
- data/Vagrantfile +17 -0
- data/appveyor.yml +37 -0
- data/bin/fluent-binlog-reader +7 -0
- data/bin/fluent-ca-generate +6 -0
- data/bin/fluent-plugin-config-format +5 -0
- data/bin/fluent-plugin-generate +5 -0
- data/bin/fluentd +3 -0
- data/code-of-conduct.md +3 -0
- data/example/copy_roundrobin.conf +39 -0
- data/example/counter.conf +18 -0
- data/example/in_dummy_blocks.conf +17 -0
- data/example/in_dummy_with_compression.conf +23 -0
- data/example/in_forward.conf +7 -0
- data/example/in_forward_client.conf +37 -0
- data/example/in_forward_shared_key.conf +15 -0
- data/example/in_forward_tls.conf +14 -0
- data/example/in_forward_users.conf +24 -0
- data/example/in_forward_workers.conf +21 -0
- data/example/in_http.conf +3 -1
- data/example/in_out_forward.conf +17 -0
- data/example/logevents.conf +25 -0
- data/example/multi_filters.conf +61 -0
- data/example/out_exec_filter.conf +42 -0
- data/example/out_forward.conf +13 -13
- data/example/out_forward_buf_file.conf +23 -0
- data/example/out_forward_client.conf +109 -0
- data/example/out_forward_heartbeat_none.conf +16 -0
- data/example/out_forward_shared_key.conf +36 -0
- data/example/out_forward_tls.conf +18 -0
- data/example/out_forward_users.conf +65 -0
- data/example/out_null.conf +36 -0
- data/example/secondary_file.conf +42 -0
- data/example/suppress_config_dump.conf +7 -0
- data/example/worker_section.conf +36 -0
- data/fluent.conf +29 -0
- data/fluentd.gemspec +21 -11
- data/lib/fluent/agent.rb +67 -90
- data/lib/fluent/clock.rb +62 -0
- data/lib/fluent/command/binlog_reader.rb +244 -0
- data/lib/fluent/command/ca_generate.rb +181 -0
- data/lib/fluent/command/cat.rb +42 -18
- data/lib/fluent/command/debug.rb +12 -10
- data/lib/fluent/command/fluentd.rb +153 -5
- data/lib/fluent/command/plugin_config_formatter.rb +292 -0
- data/lib/fluent/command/plugin_generator.rb +324 -0
- data/lib/fluent/compat/call_super_mixin.rb +67 -0
- data/lib/fluent/compat/detach_process_mixin.rb +33 -0
- data/lib/fluent/compat/exec_util.rb +129 -0
- data/lib/fluent/compat/file_util.rb +54 -0
- data/lib/fluent/compat/filter.rb +68 -0
- data/lib/fluent/compat/formatter.rb +111 -0
- data/lib/fluent/compat/formatter_utils.rb +85 -0
- data/lib/fluent/compat/handle_tag_and_time_mixin.rb +62 -0
- data/lib/fluent/compat/handle_tag_name_mixin.rb +53 -0
- data/lib/fluent/compat/input.rb +49 -0
- data/lib/fluent/compat/output.rb +718 -0
- data/lib/fluent/compat/output_chain.rb +60 -0
- data/lib/fluent/compat/parser.rb +310 -0
- data/lib/fluent/compat/parser_utils.rb +40 -0
- data/lib/fluent/compat/propagate_default.rb +62 -0
- data/lib/fluent/compat/record_filter_mixin.rb +34 -0
- data/lib/fluent/compat/set_tag_key_mixin.rb +50 -0
- data/lib/fluent/compat/set_time_key_mixin.rb +69 -0
- data/lib/fluent/compat/socket_util.rb +165 -0
- data/lib/fluent/compat/string_util.rb +34 -0
- data/lib/fluent/compat/structured_format_mixin.rb +26 -0
- data/lib/fluent/compat/type_converter.rb +90 -0
- data/lib/fluent/config/configure_proxy.rb +210 -62
- data/lib/fluent/config/dsl.rb +12 -5
- data/lib/fluent/config/element.rb +107 -9
- data/lib/fluent/config/literal_parser.rb +9 -3
- data/lib/fluent/config/parser.rb +4 -4
- data/lib/fluent/config/section.rb +51 -14
- data/lib/fluent/config/types.rb +28 -13
- data/lib/fluent/config/v1_parser.rb +3 -5
- data/lib/fluent/config.rb +23 -20
- data/lib/fluent/configurable.rb +79 -21
- data/lib/fluent/counter/base_socket.rb +46 -0
- data/lib/fluent/counter/client.rb +297 -0
- data/lib/fluent/counter/error.rb +86 -0
- data/lib/fluent/counter/mutex_hash.rb +163 -0
- data/lib/fluent/counter/server.rb +273 -0
- data/lib/fluent/counter/store.rb +205 -0
- data/lib/fluent/counter/validator.rb +145 -0
- data/lib/fluent/counter.rb +23 -0
- data/lib/fluent/daemon.rb +15 -0
- data/lib/fluent/engine.rb +102 -65
- data/lib/fluent/env.rb +7 -3
- data/lib/fluent/error.rb +30 -0
- data/lib/fluent/event.rb +197 -21
- data/lib/fluent/event_router.rb +93 -10
- data/lib/fluent/filter.rb +2 -50
- data/lib/fluent/formatter.rb +4 -293
- data/lib/fluent/input.rb +2 -32
- data/lib/fluent/label.rb +10 -2
- data/lib/fluent/load.rb +3 -3
- data/lib/fluent/log.rb +348 -81
- data/lib/fluent/match.rb +37 -36
- data/lib/fluent/mixin.rb +12 -176
- data/lib/fluent/msgpack_factory.rb +62 -0
- data/lib/fluent/output.rb +10 -612
- data/lib/fluent/output_chain.rb +23 -0
- data/lib/fluent/parser.rb +4 -800
- data/lib/fluent/plugin/bare_output.rb +63 -0
- data/lib/fluent/plugin/base.rb +192 -0
- data/lib/fluent/plugin/buf_file.rb +128 -174
- data/lib/fluent/plugin/buf_memory.rb +9 -92
- data/lib/fluent/plugin/buffer/chunk.rb +221 -0
- data/lib/fluent/plugin/buffer/file_chunk.rb +383 -0
- data/lib/fluent/plugin/buffer/memory_chunk.rb +90 -0
- data/lib/fluent/plugin/buffer.rb +779 -0
- data/lib/fluent/plugin/compressable.rb +92 -0
- data/lib/fluent/plugin/exec_util.rb +3 -108
- data/lib/fluent/plugin/file_util.rb +4 -34
- data/lib/fluent/plugin/file_wrapper.rb +120 -0
- data/lib/fluent/plugin/filter.rb +93 -0
- data/lib/fluent/plugin/filter_grep.rb +117 -34
- data/lib/fluent/plugin/filter_parser.rb +85 -62
- data/lib/fluent/plugin/filter_record_transformer.rb +27 -39
- data/lib/fluent/plugin/filter_stdout.rb +15 -12
- data/lib/fluent/plugin/formatter.rb +50 -0
- data/lib/fluent/plugin/formatter_csv.rb +52 -0
- data/lib/fluent/plugin/formatter_hash.rb +33 -0
- data/lib/fluent/plugin/formatter_json.rb +55 -0
- data/lib/fluent/plugin/formatter_ltsv.rb +42 -0
- data/lib/fluent/plugin/formatter_msgpack.rb +33 -0
- data/lib/fluent/plugin/formatter_out_file.rb +51 -0
- data/lib/fluent/plugin/formatter_single_value.rb +34 -0
- data/lib/fluent/plugin/formatter_stdout.rb +76 -0
- data/lib/fluent/plugin/formatter_tsv.rb +38 -0
- data/lib/fluent/plugin/in_debug_agent.rb +17 -6
- data/lib/fluent/plugin/in_dummy.rb +47 -20
- data/lib/fluent/plugin/in_exec.rb +55 -123
- data/lib/fluent/plugin/in_forward.rb +299 -216
- data/lib/fluent/plugin/in_gc_stat.rb +14 -36
- data/lib/fluent/plugin/in_http.rb +204 -91
- data/lib/fluent/plugin/in_monitor_agent.rb +186 -258
- data/lib/fluent/plugin/in_object_space.rb +13 -41
- data/lib/fluent/plugin/in_syslog.rb +112 -134
- data/lib/fluent/plugin/in_tail.rb +408 -745
- data/lib/fluent/plugin/in_tcp.rb +66 -9
- data/lib/fluent/plugin/in_udp.rb +60 -11
- data/lib/fluent/plugin/{in_stream.rb → in_unix.rb} +8 -4
- data/lib/fluent/plugin/input.rb +37 -0
- data/lib/fluent/plugin/multi_output.rb +158 -0
- data/lib/fluent/plugin/out_copy.rb +23 -35
- data/lib/fluent/plugin/out_exec.rb +67 -70
- data/lib/fluent/plugin/out_exec_filter.rb +204 -271
- data/lib/fluent/plugin/out_file.rb +267 -73
- data/lib/fluent/plugin/out_forward.rb +854 -325
- data/lib/fluent/plugin/out_null.rb +42 -9
- data/lib/fluent/plugin/out_relabel.rb +9 -5
- data/lib/fluent/plugin/out_roundrobin.rb +18 -37
- data/lib/fluent/plugin/out_secondary_file.rb +133 -0
- data/lib/fluent/plugin/out_stdout.rb +43 -10
- data/lib/fluent/plugin/out_stream.rb +7 -2
- data/lib/fluent/plugin/output.rb +1498 -0
- data/lib/fluent/plugin/owned_by_mixin.rb +42 -0
- data/lib/fluent/plugin/parser.rb +191 -0
- data/lib/fluent/plugin/parser_apache.rb +28 -0
- data/lib/fluent/plugin/parser_apache2.rb +88 -0
- data/lib/fluent/plugin/parser_apache_error.rb +26 -0
- data/lib/fluent/plugin/parser_csv.rb +39 -0
- data/lib/fluent/plugin/parser_json.rb +94 -0
- data/lib/fluent/plugin/parser_ltsv.rb +49 -0
- data/lib/fluent/plugin/parser_msgpack.rb +50 -0
- data/lib/fluent/plugin/parser_multiline.rb +106 -0
- data/lib/fluent/plugin/parser_nginx.rb +28 -0
- data/lib/fluent/plugin/parser_none.rb +36 -0
- data/lib/fluent/plugin/parser_regexp.rb +68 -0
- data/lib/fluent/plugin/parser_syslog.rb +142 -0
- data/lib/fluent/plugin/parser_tsv.rb +42 -0
- data/lib/fluent/plugin/socket_util.rb +3 -143
- data/lib/fluent/plugin/storage.rb +84 -0
- data/lib/fluent/plugin/storage_local.rb +164 -0
- data/lib/fluent/plugin/string_util.rb +3 -15
- data/lib/fluent/plugin.rb +122 -121
- data/lib/fluent/plugin_helper/cert_option.rb +178 -0
- data/lib/fluent/plugin_helper/child_process.rb +364 -0
- data/lib/fluent/plugin_helper/compat_parameters.rb +333 -0
- data/lib/fluent/plugin_helper/counter.rb +51 -0
- data/lib/fluent/plugin_helper/event_emitter.rb +93 -0
- data/lib/fluent/plugin_helper/event_loop.rb +170 -0
- data/lib/fluent/plugin_helper/extract.rb +104 -0
- data/lib/fluent/plugin_helper/formatter.rb +147 -0
- data/lib/fluent/plugin_helper/http_server/app.rb +79 -0
- data/lib/fluent/plugin_helper/http_server/compat/server.rb +81 -0
- data/lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb +58 -0
- data/lib/fluent/plugin_helper/http_server/methods.rb +35 -0
- data/lib/fluent/plugin_helper/http_server/request.rb +42 -0
- data/lib/fluent/plugin_helper/http_server/router.rb +54 -0
- data/lib/fluent/plugin_helper/http_server/server.rb +87 -0
- data/lib/fluent/plugin_helper/http_server.rb +76 -0
- data/lib/fluent/plugin_helper/inject.rb +151 -0
- data/lib/fluent/plugin_helper/parser.rb +147 -0
- data/lib/fluent/plugin_helper/record_accessor.rb +210 -0
- data/lib/fluent/plugin_helper/retry_state.rb +205 -0
- data/lib/fluent/plugin_helper/server.rb +807 -0
- data/lib/fluent/plugin_helper/socket.rb +250 -0
- data/lib/fluent/plugin_helper/socket_option.rb +80 -0
- data/lib/fluent/plugin_helper/storage.rb +349 -0
- data/lib/fluent/plugin_helper/thread.rb +179 -0
- data/lib/fluent/plugin_helper/timer.rb +92 -0
- data/lib/fluent/plugin_helper.rb +73 -0
- data/lib/fluent/plugin_id.rb +80 -0
- data/lib/fluent/process.rb +3 -489
- data/lib/fluent/registry.rb +52 -10
- data/lib/fluent/root_agent.rb +204 -42
- data/lib/fluent/supervisor.rb +597 -359
- data/lib/fluent/system_config.rb +131 -42
- data/lib/fluent/test/base.rb +6 -54
- data/lib/fluent/test/driver/base.rb +224 -0
- data/lib/fluent/test/driver/base_owned.rb +70 -0
- data/lib/fluent/test/driver/base_owner.rb +135 -0
- data/lib/fluent/test/driver/event_feeder.rb +98 -0
- data/lib/fluent/test/driver/filter.rb +57 -0
- data/lib/fluent/test/driver/formatter.rb +30 -0
- data/lib/fluent/test/driver/input.rb +31 -0
- data/lib/fluent/test/driver/multi_output.rb +53 -0
- data/lib/fluent/test/driver/output.rb +102 -0
- data/lib/fluent/test/driver/parser.rb +30 -0
- data/lib/fluent/test/driver/test_event_router.rb +45 -0
- data/lib/fluent/test/filter_test.rb +0 -1
- data/lib/fluent/test/formatter_test.rb +4 -1
- data/lib/fluent/test/helpers.rb +58 -10
- data/lib/fluent/test/input_test.rb +27 -19
- data/lib/fluent/test/log.rb +79 -0
- data/lib/fluent/test/output_test.rb +28 -39
- data/lib/fluent/test/parser_test.rb +3 -1
- data/lib/fluent/test/startup_shutdown.rb +46 -0
- data/lib/fluent/test.rb +33 -1
- data/lib/fluent/time.rb +450 -1
- data/lib/fluent/timezone.rb +27 -3
- data/lib/fluent/{status.rb → unique_id.rb} +15 -24
- data/lib/fluent/version.rb +1 -1
- data/lib/fluent/winsvc.rb +85 -0
- data/templates/new_gem/Gemfile +3 -0
- data/templates/new_gem/README.md.erb +43 -0
- data/templates/new_gem/Rakefile +13 -0
- data/templates/new_gem/fluent-plugin.gemspec.erb +27 -0
- data/templates/new_gem/lib/fluent/plugin/filter.rb.erb +14 -0
- data/templates/new_gem/lib/fluent/plugin/formatter.rb.erb +14 -0
- data/templates/new_gem/lib/fluent/plugin/input.rb.erb +11 -0
- data/templates/new_gem/lib/fluent/plugin/output.rb.erb +11 -0
- data/templates/new_gem/lib/fluent/plugin/parser.rb.erb +15 -0
- data/templates/new_gem/test/helper.rb.erb +8 -0
- data/templates/new_gem/test/plugin/test_filter.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_formatter.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_input.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_output.rb.erb +18 -0
- data/templates/new_gem/test/plugin/test_parser.rb.erb +18 -0
- data/templates/plugin_config_formatter/param.md-compact.erb +25 -0
- data/templates/plugin_config_formatter/param.md.erb +34 -0
- data/templates/plugin_config_formatter/section.md.erb +12 -0
- data/test/command/test_binlog_reader.rb +346 -0
- data/test/command/test_ca_generate.rb +70 -0
- data/test/command/test_fluentd.rb +901 -0
- data/test/command/test_plugin_config_formatter.rb +276 -0
- data/test/command/test_plugin_generator.rb +92 -0
- data/test/compat/test_calls_super.rb +166 -0
- data/test/compat/test_parser.rb +92 -0
- data/test/config/test_config_parser.rb +126 -2
- data/test/config/test_configurable.rb +946 -187
- data/test/config/test_configure_proxy.rb +424 -74
- data/test/config/test_dsl.rb +11 -11
- data/test/config/test_element.rb +500 -0
- data/test/config/test_literal_parser.rb +8 -0
- data/test/config/test_plugin_configuration.rb +56 -0
- data/test/config/test_section.rb +79 -7
- data/test/config/test_system_config.rb +122 -35
- data/test/config/test_types.rb +38 -0
- data/test/counter/test_client.rb +559 -0
- data/test/counter/test_error.rb +44 -0
- data/test/counter/test_mutex_hash.rb +179 -0
- data/test/counter/test_server.rb +589 -0
- data/test/counter/test_store.rb +258 -0
- data/test/counter/test_validator.rb +137 -0
- data/test/helper.rb +89 -6
- data/test/helpers/fuzzy_assert.rb +89 -0
- data/test/plugin/test_bare_output.rb +118 -0
- data/test/plugin/test_base.rb +115 -0
- data/test/plugin/test_buf_file.rb +823 -460
- data/test/plugin/test_buf_memory.rb +32 -194
- data/test/plugin/test_buffer.rb +1233 -0
- data/test/plugin/test_buffer_chunk.rb +198 -0
- data/test/plugin/test_buffer_file_chunk.rb +844 -0
- data/test/plugin/test_buffer_memory_chunk.rb +338 -0
- data/test/plugin/test_compressable.rb +84 -0
- data/test/plugin/test_filter.rb +357 -0
- data/test/plugin/test_filter_grep.rb +540 -29
- data/test/plugin/test_filter_parser.rb +439 -452
- data/test/plugin/test_filter_record_transformer.rb +123 -166
- data/test/plugin/test_filter_stdout.rb +160 -72
- data/test/plugin/test_formatter_csv.rb +111 -0
- data/test/plugin/test_formatter_hash.rb +35 -0
- data/test/plugin/test_formatter_json.rb +51 -0
- data/test/plugin/test_formatter_ltsv.rb +62 -0
- data/test/plugin/test_formatter_msgpack.rb +28 -0
- data/test/plugin/test_formatter_out_file.rb +95 -0
- data/test/plugin/test_formatter_single_value.rb +38 -0
- data/test/plugin/test_formatter_tsv.rb +68 -0
- data/test/plugin/test_in_debug_agent.rb +24 -1
- data/test/plugin/test_in_dummy.rb +111 -18
- data/test/plugin/test_in_exec.rb +200 -113
- data/test/plugin/test_in_forward.rb +990 -387
- data/test/plugin/test_in_gc_stat.rb +10 -8
- data/test/plugin/test_in_http.rb +600 -224
- data/test/plugin/test_in_monitor_agent.rb +690 -0
- data/test/plugin/test_in_object_space.rb +24 -8
- data/test/plugin/test_in_syslog.rb +154 -215
- data/test/plugin/test_in_tail.rb +1006 -707
- data/test/plugin/test_in_tcp.rb +125 -48
- data/test/plugin/test_in_udp.rb +204 -63
- data/test/plugin/{test_in_stream.rb → test_in_unix.rb} +14 -13
- data/test/plugin/test_input.rb +126 -0
- data/test/plugin/test_metadata.rb +89 -0
- data/test/plugin/test_multi_output.rb +180 -0
- data/test/plugin/test_out_copy.rb +117 -112
- data/test/plugin/test_out_exec.rb +258 -53
- data/test/plugin/test_out_exec_filter.rb +538 -115
- data/test/plugin/test_out_file.rb +865 -178
- data/test/plugin/test_out_forward.rb +998 -210
- data/test/plugin/test_out_null.rb +105 -0
- data/test/plugin/test_out_relabel.rb +28 -0
- data/test/plugin/test_out_roundrobin.rb +36 -29
- data/test/plugin/test_out_secondary_file.rb +458 -0
- data/test/plugin/test_out_stdout.rb +135 -37
- data/test/plugin/test_out_stream.rb +18 -0
- data/test/plugin/test_output.rb +984 -0
- data/test/plugin/test_output_as_buffered.rb +2021 -0
- data/test/plugin/test_output_as_buffered_backup.rb +312 -0
- data/test/plugin/test_output_as_buffered_compress.rb +165 -0
- data/test/plugin/test_output_as_buffered_overflow.rb +250 -0
- data/test/plugin/test_output_as_buffered_retries.rb +911 -0
- data/test/plugin/test_output_as_buffered_secondary.rb +874 -0
- data/test/plugin/test_output_as_standard.rb +374 -0
- data/test/plugin/test_owned_by.rb +35 -0
- data/test/plugin/test_parser.rb +359 -0
- data/test/plugin/test_parser_apache.rb +42 -0
- data/test/plugin/test_parser_apache2.rb +47 -0
- data/test/plugin/test_parser_apache_error.rb +45 -0
- data/test/plugin/test_parser_csv.rb +103 -0
- data/test/plugin/test_parser_json.rb +138 -0
- data/test/plugin/test_parser_labeled_tsv.rb +145 -0
- data/test/plugin/test_parser_multiline.rb +100 -0
- data/test/plugin/test_parser_nginx.rb +88 -0
- data/test/plugin/test_parser_none.rb +52 -0
- data/test/plugin/test_parser_regexp.rb +289 -0
- data/test/plugin/test_parser_syslog.rb +441 -0
- data/test/plugin/test_parser_tsv.rb +122 -0
- data/test/plugin/test_storage.rb +167 -0
- data/test/plugin/test_storage_local.rb +335 -0
- data/test/plugin_helper/data/cert/cert-key.pem +27 -0
- data/test/plugin_helper/data/cert/cert-with-no-newline.pem +19 -0
- data/test/plugin_helper/data/cert/cert.pem +19 -0
- data/test/plugin_helper/http_server/test_app.rb +65 -0
- data/test/plugin_helper/http_server/test_route.rb +32 -0
- data/test/plugin_helper/test_cert_option.rb +16 -0
- data/test/plugin_helper/test_child_process.rb +794 -0
- data/test/plugin_helper/test_compat_parameters.rb +353 -0
- data/test/plugin_helper/test_event_emitter.rb +51 -0
- data/test/plugin_helper/test_event_loop.rb +52 -0
- data/test/plugin_helper/test_extract.rb +194 -0
- data/test/plugin_helper/test_formatter.rb +255 -0
- data/test/plugin_helper/test_http_server_helper.rb +205 -0
- data/test/plugin_helper/test_inject.rb +519 -0
- data/test/plugin_helper/test_parser.rb +264 -0
- data/test/plugin_helper/test_record_accessor.rb +197 -0
- data/test/plugin_helper/test_retry_state.rb +442 -0
- data/test/plugin_helper/test_server.rb +1714 -0
- data/test/plugin_helper/test_storage.rb +542 -0
- data/test/plugin_helper/test_thread.rb +164 -0
- data/test/plugin_helper/test_timer.rb +132 -0
- data/test/scripts/exec_script.rb +0 -6
- data/test/scripts/fluent/plugin/formatter1/formatter_test1.rb +7 -0
- data/test/scripts/fluent/plugin/formatter2/formatter_test2.rb +7 -0
- data/test/scripts/fluent/plugin/out_test.rb +23 -15
- data/test/scripts/fluent/plugin/out_test2.rb +80 -0
- data/test/test_clock.rb +164 -0
- data/test/test_config.rb +16 -7
- data/test/test_configdsl.rb +2 -2
- data/test/test_event.rb +360 -13
- data/test/test_event_router.rb +108 -11
- data/test/test_event_time.rb +199 -0
- data/test/test_filter.rb +48 -6
- data/test/test_formatter.rb +11 -391
- data/test/test_input.rb +1 -1
- data/test/test_log.rb +591 -31
- data/test/test_mixin.rb +1 -1
- data/test/test_output.rb +121 -185
- data/test/test_plugin.rb +251 -0
- data/test/test_plugin_classes.rb +177 -10
- data/test/test_plugin_helper.rb +81 -0
- data/test/test_plugin_id.rb +101 -0
- data/test/test_process.rb +8 -42
- data/test/test_root_agent.rb +766 -21
- data/test/test_supervisor.rb +481 -0
- data/test/test_test_drivers.rb +135 -0
- data/test/test_time_formatter.rb +282 -0
- data/test/test_time_parser.rb +231 -0
- data/test/test_unique_id.rb +47 -0
- metadata +454 -60
- data/COPYING +0 -14
- data/ChangeLog +0 -666
- data/lib/fluent/buffer.rb +0 -365
- data/lib/fluent/plugin/in_status.rb +0 -76
- data/test/plugin/test_in_status.rb +0 -38
- data/test/test_buffer.rb +0 -624
- data/test/test_parser.rb +0 -1305
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluentd
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-07-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: msgpack
|
@@ -16,68 +16,74 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.7.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: 2.0.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.7.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: 2.0.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
|
-
name:
|
34
|
+
name: yajl-ruby
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
37
|
+
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: 1.
|
39
|
+
version: '1.0'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
|
-
- - "
|
44
|
+
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 1.
|
46
|
+
version: '1.0'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
48
|
+
name: cool.io
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
|
-
- - "
|
51
|
+
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
53
|
+
version: 1.4.5
|
54
|
+
- - "<"
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: 2.0.0
|
54
57
|
type: :runtime
|
55
58
|
prerelease: false
|
56
59
|
version_requirements: !ruby/object:Gem::Requirement
|
57
60
|
requirements:
|
58
|
-
- - "
|
61
|
+
- - ">="
|
59
62
|
- !ruby/object:Gem::Version
|
60
|
-
version:
|
63
|
+
version: 1.4.5
|
64
|
+
- - "<"
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: 2.0.0
|
61
67
|
- !ruby/object:Gem::Dependency
|
62
|
-
name:
|
68
|
+
name: serverengine
|
63
69
|
requirement: !ruby/object:Gem::Requirement
|
64
70
|
requirements:
|
65
71
|
- - ">="
|
66
72
|
- !ruby/object:Gem::Version
|
67
|
-
version:
|
73
|
+
version: 2.0.4
|
68
74
|
- - "<"
|
69
75
|
- !ruby/object:Gem::Version
|
70
|
-
version:
|
76
|
+
version: 3.0.0
|
71
77
|
type: :runtime
|
72
78
|
prerelease: false
|
73
79
|
version_requirements: !ruby/object:Gem::Requirement
|
74
80
|
requirements:
|
75
81
|
- - ">="
|
76
82
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
83
|
+
version: 2.0.4
|
78
84
|
- - "<"
|
79
85
|
- !ruby/object:Gem::Version
|
80
|
-
version:
|
86
|
+
version: 3.0.0
|
81
87
|
- !ruby/object:Gem::Dependency
|
82
88
|
name: http_parser.rb
|
83
89
|
requirement: !ruby/object:Gem::Requirement
|
@@ -116,64 +122,78 @@ dependencies:
|
|
116
122
|
name: tzinfo
|
117
123
|
requirement: !ruby/object:Gem::Requirement
|
118
124
|
requirements:
|
119
|
-
- - "
|
125
|
+
- - "~>"
|
120
126
|
- !ruby/object:Gem::Version
|
121
|
-
version: 1.0
|
127
|
+
version: '1.0'
|
122
128
|
type: :runtime
|
123
129
|
prerelease: false
|
124
130
|
version_requirements: !ruby/object:Gem::Requirement
|
125
131
|
requirements:
|
126
|
-
- - "
|
132
|
+
- - "~>"
|
127
133
|
- !ruby/object:Gem::Version
|
128
|
-
version: 1.0
|
134
|
+
version: '1.0'
|
129
135
|
- !ruby/object:Gem::Dependency
|
130
136
|
name: tzinfo-data
|
131
137
|
requirement: !ruby/object:Gem::Requirement
|
132
138
|
requirements:
|
133
|
-
- - "
|
139
|
+
- - "~>"
|
134
140
|
- !ruby/object:Gem::Version
|
135
|
-
version: 1.0
|
141
|
+
version: '1.0'
|
136
142
|
type: :runtime
|
137
143
|
prerelease: false
|
138
144
|
version_requirements: !ruby/object:Gem::Requirement
|
139
145
|
requirements:
|
140
|
-
- - "
|
146
|
+
- - "~>"
|
141
147
|
- !ruby/object:Gem::Version
|
142
|
-
version: 1.0
|
148
|
+
version: '1.0'
|
143
149
|
- !ruby/object:Gem::Dependency
|
144
|
-
name:
|
150
|
+
name: strptime
|
145
151
|
requirement: !ruby/object:Gem::Requirement
|
146
152
|
requirements:
|
147
153
|
- - ">="
|
148
154
|
- !ruby/object:Gem::Version
|
149
|
-
version: 0.
|
150
|
-
- - "
|
155
|
+
version: 0.2.2
|
156
|
+
- - "<"
|
151
157
|
- !ruby/object:Gem::Version
|
152
|
-
version: 0.0
|
158
|
+
version: 1.0.0
|
153
159
|
type: :runtime
|
154
160
|
prerelease: false
|
155
161
|
version_requirements: !ruby/object:Gem::Requirement
|
156
162
|
requirements:
|
157
163
|
- - ">="
|
158
164
|
- !ruby/object:Gem::Version
|
159
|
-
version: 0.
|
160
|
-
- - "
|
165
|
+
version: 0.2.2
|
166
|
+
- - "<"
|
161
167
|
- !ruby/object:Gem::Version
|
162
|
-
version: 0.0
|
168
|
+
version: 1.0.0
|
169
|
+
- !ruby/object:Gem::Dependency
|
170
|
+
name: dig_rb
|
171
|
+
requirement: !ruby/object:Gem::Requirement
|
172
|
+
requirements:
|
173
|
+
- - "~>"
|
174
|
+
- !ruby/object:Gem::Version
|
175
|
+
version: 1.0.0
|
176
|
+
type: :runtime
|
177
|
+
prerelease: false
|
178
|
+
version_requirements: !ruby/object:Gem::Requirement
|
179
|
+
requirements:
|
180
|
+
- - "~>"
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: 1.0.0
|
163
183
|
- !ruby/object:Gem::Dependency
|
164
184
|
name: rake
|
165
185
|
requirement: !ruby/object:Gem::Requirement
|
166
186
|
requirements:
|
167
|
-
- - "
|
187
|
+
- - "~>"
|
168
188
|
- !ruby/object:Gem::Version
|
169
|
-
version: 0
|
189
|
+
version: '11.0'
|
170
190
|
type: :development
|
171
191
|
prerelease: false
|
172
192
|
version_requirements: !ruby/object:Gem::Requirement
|
173
193
|
requirements:
|
174
|
-
- - "
|
194
|
+
- - "~>"
|
175
195
|
- !ruby/object:Gem::Version
|
176
|
-
version: 0
|
196
|
+
version: '11.0'
|
177
197
|
- !ruby/object:Gem::Dependency
|
178
198
|
name: flexmock
|
179
199
|
requirement: !ruby/object:Gem::Requirement
|
@@ -276,61 +296,137 @@ dependencies:
|
|
276
296
|
name: oj
|
277
297
|
requirement: !ruby/object:Gem::Requirement
|
278
298
|
requirements:
|
279
|
-
- - "
|
299
|
+
- - ">="
|
280
300
|
- !ruby/object:Gem::Version
|
281
301
|
version: '2.14'
|
302
|
+
- - "<"
|
303
|
+
- !ruby/object:Gem::Version
|
304
|
+
version: '4'
|
282
305
|
type: :development
|
283
306
|
prerelease: false
|
284
307
|
version_requirements: !ruby/object:Gem::Requirement
|
285
308
|
requirements:
|
286
|
-
- - "
|
309
|
+
- - ">="
|
287
310
|
- !ruby/object:Gem::Version
|
288
311
|
version: '2.14'
|
312
|
+
- - "<"
|
313
|
+
- !ruby/object:Gem::Version
|
314
|
+
version: '4'
|
289
315
|
description: Fluentd is an open source data collector designed to scale and simplify
|
290
316
|
log management. It can collect, process and ship many kinds of data in near real-time.
|
291
317
|
email:
|
292
318
|
- frsyuki@gmail.com
|
293
319
|
executables:
|
320
|
+
- fluent-binlog-reader
|
321
|
+
- fluent-ca-generate
|
294
322
|
- fluent-cat
|
295
323
|
- fluent-debug
|
296
324
|
- fluent-gem
|
325
|
+
- fluent-plugin-config-format
|
326
|
+
- fluent-plugin-generate
|
297
327
|
- fluentd
|
298
328
|
extensions: []
|
299
329
|
extra_rdoc_files: []
|
300
330
|
files:
|
331
|
+
- ".github/ISSUE_TEMPLATE.md"
|
332
|
+
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
333
|
+
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
334
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
301
335
|
- ".gitignore"
|
336
|
+
- ".gitlab-ci.yml"
|
337
|
+
- ".gitlab/cicd-template.yaml"
|
302
338
|
- ".travis.yml"
|
339
|
+
- ADOPTERS.md
|
303
340
|
- AUTHORS
|
341
|
+
- CHANGELOG.md
|
304
342
|
- CONTRIBUTING.md
|
305
|
-
-
|
306
|
-
- ChangeLog
|
343
|
+
- GOVERNANCE.md
|
307
344
|
- Gemfile
|
345
|
+
- GithubWorkflow.md
|
346
|
+
- LICENSE
|
347
|
+
- MAINTAINERS.md
|
308
348
|
- README.md
|
309
349
|
- Rakefile
|
350
|
+
- Vagrantfile
|
351
|
+
- appveyor.yml
|
352
|
+
- bin/fluent-binlog-reader
|
353
|
+
- bin/fluent-ca-generate
|
310
354
|
- bin/fluent-cat
|
311
355
|
- bin/fluent-debug
|
312
356
|
- bin/fluent-gem
|
357
|
+
- bin/fluent-plugin-config-format
|
358
|
+
- bin/fluent-plugin-generate
|
313
359
|
- bin/fluentd
|
360
|
+
- code-of-conduct.md
|
361
|
+
- example/copy_roundrobin.conf
|
362
|
+
- example/counter.conf
|
314
363
|
- example/filter_stdout.conf
|
364
|
+
- example/in_dummy_blocks.conf
|
365
|
+
- example/in_dummy_with_compression.conf
|
315
366
|
- example/in_forward.conf
|
367
|
+
- example/in_forward_client.conf
|
368
|
+
- example/in_forward_shared_key.conf
|
369
|
+
- example/in_forward_tls.conf
|
370
|
+
- example/in_forward_users.conf
|
371
|
+
- example/in_forward_workers.conf
|
316
372
|
- example/in_http.conf
|
373
|
+
- example/in_out_forward.conf
|
317
374
|
- example/in_syslog.conf
|
318
375
|
- example/in_tail.conf
|
319
376
|
- example/in_tcp.conf
|
320
377
|
- example/in_udp.conf
|
378
|
+
- example/logevents.conf
|
379
|
+
- example/multi_filters.conf
|
321
380
|
- example/out_copy.conf
|
381
|
+
- example/out_exec_filter.conf
|
322
382
|
- example/out_file.conf
|
323
383
|
- example/out_forward.conf
|
384
|
+
- example/out_forward_buf_file.conf
|
385
|
+
- example/out_forward_client.conf
|
386
|
+
- example/out_forward_heartbeat_none.conf
|
387
|
+
- example/out_forward_shared_key.conf
|
388
|
+
- example/out_forward_tls.conf
|
389
|
+
- example/out_forward_users.conf
|
390
|
+
- example/out_null.conf
|
391
|
+
- example/secondary_file.conf
|
392
|
+
- example/suppress_config_dump.conf
|
324
393
|
- example/v0_12_filter.conf
|
325
394
|
- example/v1_literal_example.conf
|
395
|
+
- example/worker_section.conf
|
326
396
|
- fluent.conf
|
327
397
|
- fluentd.gemspec
|
328
398
|
- lib/fluent/agent.rb
|
329
|
-
- lib/fluent/
|
399
|
+
- lib/fluent/clock.rb
|
400
|
+
- lib/fluent/command/binlog_reader.rb
|
330
401
|
- lib/fluent/command/bundler_injection.rb
|
402
|
+
- lib/fluent/command/ca_generate.rb
|
331
403
|
- lib/fluent/command/cat.rb
|
332
404
|
- lib/fluent/command/debug.rb
|
333
405
|
- lib/fluent/command/fluentd.rb
|
406
|
+
- lib/fluent/command/plugin_config_formatter.rb
|
407
|
+
- lib/fluent/command/plugin_generator.rb
|
408
|
+
- lib/fluent/compat/call_super_mixin.rb
|
409
|
+
- lib/fluent/compat/detach_process_mixin.rb
|
410
|
+
- lib/fluent/compat/exec_util.rb
|
411
|
+
- lib/fluent/compat/file_util.rb
|
412
|
+
- lib/fluent/compat/filter.rb
|
413
|
+
- lib/fluent/compat/formatter.rb
|
414
|
+
- lib/fluent/compat/formatter_utils.rb
|
415
|
+
- lib/fluent/compat/handle_tag_and_time_mixin.rb
|
416
|
+
- lib/fluent/compat/handle_tag_name_mixin.rb
|
417
|
+
- lib/fluent/compat/input.rb
|
418
|
+
- lib/fluent/compat/output.rb
|
419
|
+
- lib/fluent/compat/output_chain.rb
|
420
|
+
- lib/fluent/compat/parser.rb
|
421
|
+
- lib/fluent/compat/parser_utils.rb
|
422
|
+
- lib/fluent/compat/propagate_default.rb
|
423
|
+
- lib/fluent/compat/record_filter_mixin.rb
|
424
|
+
- lib/fluent/compat/set_tag_key_mixin.rb
|
425
|
+
- lib/fluent/compat/set_time_key_mixin.rb
|
426
|
+
- lib/fluent/compat/socket_util.rb
|
427
|
+
- lib/fluent/compat/string_util.rb
|
428
|
+
- lib/fluent/compat/structured_format_mixin.rb
|
429
|
+
- lib/fluent/compat/type_converter.rb
|
334
430
|
- lib/fluent/config.rb
|
335
431
|
- lib/fluent/config/basic_parser.rb
|
336
432
|
- lib/fluent/config/configure_proxy.rb
|
@@ -343,8 +439,18 @@ files:
|
|
343
439
|
- lib/fluent/config/types.rb
|
344
440
|
- lib/fluent/config/v1_parser.rb
|
345
441
|
- lib/fluent/configurable.rb
|
442
|
+
- lib/fluent/counter.rb
|
443
|
+
- lib/fluent/counter/base_socket.rb
|
444
|
+
- lib/fluent/counter/client.rb
|
445
|
+
- lib/fluent/counter/error.rb
|
446
|
+
- lib/fluent/counter/mutex_hash.rb
|
447
|
+
- lib/fluent/counter/server.rb
|
448
|
+
- lib/fluent/counter/store.rb
|
449
|
+
- lib/fluent/counter/validator.rb
|
450
|
+
- lib/fluent/daemon.rb
|
346
451
|
- lib/fluent/engine.rb
|
347
452
|
- lib/fluent/env.rb
|
453
|
+
- lib/fluent/error.rb
|
348
454
|
- lib/fluent/event.rb
|
349
455
|
- lib/fluent/event_router.rb
|
350
456
|
- lib/fluent/filter.rb
|
@@ -355,17 +461,38 @@ files:
|
|
355
461
|
- lib/fluent/log.rb
|
356
462
|
- lib/fluent/match.rb
|
357
463
|
- lib/fluent/mixin.rb
|
464
|
+
- lib/fluent/msgpack_factory.rb
|
358
465
|
- lib/fluent/output.rb
|
466
|
+
- lib/fluent/output_chain.rb
|
359
467
|
- lib/fluent/parser.rb
|
360
468
|
- lib/fluent/plugin.rb
|
469
|
+
- lib/fluent/plugin/bare_output.rb
|
470
|
+
- lib/fluent/plugin/base.rb
|
361
471
|
- lib/fluent/plugin/buf_file.rb
|
362
472
|
- lib/fluent/plugin/buf_memory.rb
|
473
|
+
- lib/fluent/plugin/buffer.rb
|
474
|
+
- lib/fluent/plugin/buffer/chunk.rb
|
475
|
+
- lib/fluent/plugin/buffer/file_chunk.rb
|
476
|
+
- lib/fluent/plugin/buffer/memory_chunk.rb
|
477
|
+
- lib/fluent/plugin/compressable.rb
|
363
478
|
- lib/fluent/plugin/exec_util.rb
|
364
479
|
- lib/fluent/plugin/file_util.rb
|
480
|
+
- lib/fluent/plugin/file_wrapper.rb
|
481
|
+
- lib/fluent/plugin/filter.rb
|
365
482
|
- lib/fluent/plugin/filter_grep.rb
|
366
483
|
- lib/fluent/plugin/filter_parser.rb
|
367
484
|
- lib/fluent/plugin/filter_record_transformer.rb
|
368
485
|
- lib/fluent/plugin/filter_stdout.rb
|
486
|
+
- lib/fluent/plugin/formatter.rb
|
487
|
+
- lib/fluent/plugin/formatter_csv.rb
|
488
|
+
- lib/fluent/plugin/formatter_hash.rb
|
489
|
+
- lib/fluent/plugin/formatter_json.rb
|
490
|
+
- lib/fluent/plugin/formatter_ltsv.rb
|
491
|
+
- lib/fluent/plugin/formatter_msgpack.rb
|
492
|
+
- lib/fluent/plugin/formatter_out_file.rb
|
493
|
+
- lib/fluent/plugin/formatter_single_value.rb
|
494
|
+
- lib/fluent/plugin/formatter_stdout.rb
|
495
|
+
- lib/fluent/plugin/formatter_tsv.rb
|
369
496
|
- lib/fluent/plugin/in_debug_agent.rb
|
370
497
|
- lib/fluent/plugin/in_dummy.rb
|
371
498
|
- lib/fluent/plugin/in_exec.rb
|
@@ -374,12 +501,13 @@ files:
|
|
374
501
|
- lib/fluent/plugin/in_http.rb
|
375
502
|
- lib/fluent/plugin/in_monitor_agent.rb
|
376
503
|
- lib/fluent/plugin/in_object_space.rb
|
377
|
-
- lib/fluent/plugin/in_status.rb
|
378
|
-
- lib/fluent/plugin/in_stream.rb
|
379
504
|
- lib/fluent/plugin/in_syslog.rb
|
380
505
|
- lib/fluent/plugin/in_tail.rb
|
381
506
|
- lib/fluent/plugin/in_tcp.rb
|
382
507
|
- lib/fluent/plugin/in_udp.rb
|
508
|
+
- lib/fluent/plugin/in_unix.rb
|
509
|
+
- lib/fluent/plugin/input.rb
|
510
|
+
- lib/fluent/plugin/multi_output.rb
|
383
511
|
- lib/fluent/plugin/out_copy.rb
|
384
512
|
- lib/fluent/plugin/out_exec.rb
|
385
513
|
- lib/fluent/plugin/out_exec_filter.rb
|
@@ -388,38 +516,133 @@ files:
|
|
388
516
|
- lib/fluent/plugin/out_null.rb
|
389
517
|
- lib/fluent/plugin/out_relabel.rb
|
390
518
|
- lib/fluent/plugin/out_roundrobin.rb
|
519
|
+
- lib/fluent/plugin/out_secondary_file.rb
|
391
520
|
- lib/fluent/plugin/out_stdout.rb
|
392
521
|
- lib/fluent/plugin/out_stream.rb
|
522
|
+
- lib/fluent/plugin/output.rb
|
523
|
+
- lib/fluent/plugin/owned_by_mixin.rb
|
524
|
+
- lib/fluent/plugin/parser.rb
|
525
|
+
- lib/fluent/plugin/parser_apache.rb
|
526
|
+
- lib/fluent/plugin/parser_apache2.rb
|
527
|
+
- lib/fluent/plugin/parser_apache_error.rb
|
528
|
+
- lib/fluent/plugin/parser_csv.rb
|
529
|
+
- lib/fluent/plugin/parser_json.rb
|
530
|
+
- lib/fluent/plugin/parser_ltsv.rb
|
531
|
+
- lib/fluent/plugin/parser_msgpack.rb
|
532
|
+
- lib/fluent/plugin/parser_multiline.rb
|
533
|
+
- lib/fluent/plugin/parser_nginx.rb
|
534
|
+
- lib/fluent/plugin/parser_none.rb
|
535
|
+
- lib/fluent/plugin/parser_regexp.rb
|
536
|
+
- lib/fluent/plugin/parser_syslog.rb
|
537
|
+
- lib/fluent/plugin/parser_tsv.rb
|
393
538
|
- lib/fluent/plugin/socket_util.rb
|
539
|
+
- lib/fluent/plugin/storage.rb
|
540
|
+
- lib/fluent/plugin/storage_local.rb
|
394
541
|
- lib/fluent/plugin/string_util.rb
|
542
|
+
- lib/fluent/plugin_helper.rb
|
543
|
+
- lib/fluent/plugin_helper/cert_option.rb
|
544
|
+
- lib/fluent/plugin_helper/child_process.rb
|
545
|
+
- lib/fluent/plugin_helper/compat_parameters.rb
|
546
|
+
- lib/fluent/plugin_helper/counter.rb
|
547
|
+
- lib/fluent/plugin_helper/event_emitter.rb
|
548
|
+
- lib/fluent/plugin_helper/event_loop.rb
|
549
|
+
- lib/fluent/plugin_helper/extract.rb
|
550
|
+
- lib/fluent/plugin_helper/formatter.rb
|
551
|
+
- lib/fluent/plugin_helper/http_server.rb
|
552
|
+
- lib/fluent/plugin_helper/http_server/app.rb
|
553
|
+
- lib/fluent/plugin_helper/http_server/compat/server.rb
|
554
|
+
- lib/fluent/plugin_helper/http_server/compat/webrick_handler.rb
|
555
|
+
- lib/fluent/plugin_helper/http_server/methods.rb
|
556
|
+
- lib/fluent/plugin_helper/http_server/request.rb
|
557
|
+
- lib/fluent/plugin_helper/http_server/router.rb
|
558
|
+
- lib/fluent/plugin_helper/http_server/server.rb
|
559
|
+
- lib/fluent/plugin_helper/inject.rb
|
560
|
+
- lib/fluent/plugin_helper/parser.rb
|
561
|
+
- lib/fluent/plugin_helper/record_accessor.rb
|
562
|
+
- lib/fluent/plugin_helper/retry_state.rb
|
563
|
+
- lib/fluent/plugin_helper/server.rb
|
564
|
+
- lib/fluent/plugin_helper/socket.rb
|
565
|
+
- lib/fluent/plugin_helper/socket_option.rb
|
566
|
+
- lib/fluent/plugin_helper/storage.rb
|
567
|
+
- lib/fluent/plugin_helper/thread.rb
|
568
|
+
- lib/fluent/plugin_helper/timer.rb
|
569
|
+
- lib/fluent/plugin_id.rb
|
395
570
|
- lib/fluent/process.rb
|
396
571
|
- lib/fluent/registry.rb
|
397
572
|
- lib/fluent/root_agent.rb
|
398
573
|
- lib/fluent/rpc.rb
|
399
|
-
- lib/fluent/status.rb
|
400
574
|
- lib/fluent/supervisor.rb
|
401
575
|
- lib/fluent/system_config.rb
|
402
576
|
- lib/fluent/test.rb
|
403
577
|
- lib/fluent/test/base.rb
|
578
|
+
- lib/fluent/test/driver/base.rb
|
579
|
+
- lib/fluent/test/driver/base_owned.rb
|
580
|
+
- lib/fluent/test/driver/base_owner.rb
|
581
|
+
- lib/fluent/test/driver/event_feeder.rb
|
582
|
+
- lib/fluent/test/driver/filter.rb
|
583
|
+
- lib/fluent/test/driver/formatter.rb
|
584
|
+
- lib/fluent/test/driver/input.rb
|
585
|
+
- lib/fluent/test/driver/multi_output.rb
|
586
|
+
- lib/fluent/test/driver/output.rb
|
587
|
+
- lib/fluent/test/driver/parser.rb
|
588
|
+
- lib/fluent/test/driver/test_event_router.rb
|
404
589
|
- lib/fluent/test/filter_test.rb
|
405
590
|
- lib/fluent/test/formatter_test.rb
|
406
591
|
- lib/fluent/test/helpers.rb
|
407
592
|
- lib/fluent/test/input_test.rb
|
593
|
+
- lib/fluent/test/log.rb
|
408
594
|
- lib/fluent/test/output_test.rb
|
409
595
|
- lib/fluent/test/parser_test.rb
|
596
|
+
- lib/fluent/test/startup_shutdown.rb
|
410
597
|
- lib/fluent/time.rb
|
411
598
|
- lib/fluent/timezone.rb
|
599
|
+
- lib/fluent/unique_id.rb
|
412
600
|
- lib/fluent/version.rb
|
601
|
+
- lib/fluent/winsvc.rb
|
602
|
+
- templates/new_gem/Gemfile
|
603
|
+
- templates/new_gem/README.md.erb
|
604
|
+
- templates/new_gem/Rakefile
|
605
|
+
- templates/new_gem/fluent-plugin.gemspec.erb
|
606
|
+
- templates/new_gem/lib/fluent/plugin/filter.rb.erb
|
607
|
+
- templates/new_gem/lib/fluent/plugin/formatter.rb.erb
|
608
|
+
- templates/new_gem/lib/fluent/plugin/input.rb.erb
|
609
|
+
- templates/new_gem/lib/fluent/plugin/output.rb.erb
|
610
|
+
- templates/new_gem/lib/fluent/plugin/parser.rb.erb
|
611
|
+
- templates/new_gem/test/helper.rb.erb
|
612
|
+
- templates/new_gem/test/plugin/test_filter.rb.erb
|
613
|
+
- templates/new_gem/test/plugin/test_formatter.rb.erb
|
614
|
+
- templates/new_gem/test/plugin/test_input.rb.erb
|
615
|
+
- templates/new_gem/test/plugin/test_output.rb.erb
|
616
|
+
- templates/new_gem/test/plugin/test_parser.rb.erb
|
617
|
+
- templates/plugin_config_formatter/param.md-compact.erb
|
618
|
+
- templates/plugin_config_formatter/param.md.erb
|
619
|
+
- templates/plugin_config_formatter/section.md.erb
|
620
|
+
- test/command/test_binlog_reader.rb
|
621
|
+
- test/command/test_ca_generate.rb
|
622
|
+
- test/command/test_fluentd.rb
|
623
|
+
- test/command/test_plugin_config_formatter.rb
|
624
|
+
- test/command/test_plugin_generator.rb
|
625
|
+
- test/compat/test_calls_super.rb
|
626
|
+
- test/compat/test_parser.rb
|
413
627
|
- test/config/assertions.rb
|
414
628
|
- test/config/test_config_parser.rb
|
415
629
|
- test/config/test_configurable.rb
|
416
630
|
- test/config/test_configure_proxy.rb
|
417
631
|
- test/config/test_dsl.rb
|
632
|
+
- test/config/test_element.rb
|
418
633
|
- test/config/test_literal_parser.rb
|
634
|
+
- test/config/test_plugin_configuration.rb
|
419
635
|
- test/config/test_section.rb
|
420
636
|
- test/config/test_system_config.rb
|
421
637
|
- test/config/test_types.rb
|
638
|
+
- test/counter/test_client.rb
|
639
|
+
- test/counter/test_error.rb
|
640
|
+
- test/counter/test_mutex_hash.rb
|
641
|
+
- test/counter/test_server.rb
|
642
|
+
- test/counter/test_store.rb
|
643
|
+
- test/counter/test_validator.rb
|
422
644
|
- test/helper.rb
|
645
|
+
- test/helpers/fuzzy_assert.rb
|
423
646
|
- test/plugin/data/2010/01/20100102-030405.log
|
424
647
|
- test/plugin/data/2010/01/20100102-030406.log
|
425
648
|
- test/plugin/data/2010/01/20100102.log
|
@@ -427,44 +650,115 @@ files:
|
|
427
650
|
- test/plugin/data/log/foo/bar.log
|
428
651
|
- test/plugin/data/log/foo/bar2
|
429
652
|
- test/plugin/data/log/test.log
|
653
|
+
- test/plugin/test_bare_output.rb
|
654
|
+
- test/plugin/test_base.rb
|
430
655
|
- test/plugin/test_buf_file.rb
|
431
656
|
- test/plugin/test_buf_memory.rb
|
657
|
+
- test/plugin/test_buffer.rb
|
658
|
+
- test/plugin/test_buffer_chunk.rb
|
659
|
+
- test/plugin/test_buffer_file_chunk.rb
|
660
|
+
- test/plugin/test_buffer_memory_chunk.rb
|
661
|
+
- test/plugin/test_compressable.rb
|
432
662
|
- test/plugin/test_file_util.rb
|
663
|
+
- test/plugin/test_filter.rb
|
433
664
|
- test/plugin/test_filter_grep.rb
|
434
665
|
- test/plugin/test_filter_parser.rb
|
435
666
|
- test/plugin/test_filter_record_transformer.rb
|
436
667
|
- test/plugin/test_filter_stdout.rb
|
668
|
+
- test/plugin/test_formatter_csv.rb
|
669
|
+
- test/plugin/test_formatter_hash.rb
|
670
|
+
- test/plugin/test_formatter_json.rb
|
671
|
+
- test/plugin/test_formatter_ltsv.rb
|
672
|
+
- test/plugin/test_formatter_msgpack.rb
|
673
|
+
- test/plugin/test_formatter_out_file.rb
|
674
|
+
- test/plugin/test_formatter_single_value.rb
|
675
|
+
- test/plugin/test_formatter_tsv.rb
|
437
676
|
- test/plugin/test_in_debug_agent.rb
|
438
677
|
- test/plugin/test_in_dummy.rb
|
439
678
|
- test/plugin/test_in_exec.rb
|
440
679
|
- test/plugin/test_in_forward.rb
|
441
680
|
- test/plugin/test_in_gc_stat.rb
|
442
681
|
- test/plugin/test_in_http.rb
|
682
|
+
- test/plugin/test_in_monitor_agent.rb
|
443
683
|
- test/plugin/test_in_object_space.rb
|
444
|
-
- test/plugin/test_in_status.rb
|
445
|
-
- test/plugin/test_in_stream.rb
|
446
684
|
- test/plugin/test_in_syslog.rb
|
447
685
|
- test/plugin/test_in_tail.rb
|
448
686
|
- test/plugin/test_in_tcp.rb
|
449
687
|
- test/plugin/test_in_udp.rb
|
688
|
+
- test/plugin/test_in_unix.rb
|
689
|
+
- test/plugin/test_input.rb
|
690
|
+
- test/plugin/test_metadata.rb
|
691
|
+
- test/plugin/test_multi_output.rb
|
450
692
|
- test/plugin/test_out_copy.rb
|
451
693
|
- test/plugin/test_out_exec.rb
|
452
694
|
- test/plugin/test_out_exec_filter.rb
|
453
695
|
- test/plugin/test_out_file.rb
|
454
696
|
- test/plugin/test_out_forward.rb
|
697
|
+
- test/plugin/test_out_null.rb
|
698
|
+
- test/plugin/test_out_relabel.rb
|
455
699
|
- test/plugin/test_out_roundrobin.rb
|
700
|
+
- test/plugin/test_out_secondary_file.rb
|
456
701
|
- test/plugin/test_out_stdout.rb
|
457
702
|
- test/plugin/test_out_stream.rb
|
703
|
+
- test/plugin/test_output.rb
|
704
|
+
- test/plugin/test_output_as_buffered.rb
|
705
|
+
- test/plugin/test_output_as_buffered_backup.rb
|
706
|
+
- test/plugin/test_output_as_buffered_compress.rb
|
707
|
+
- test/plugin/test_output_as_buffered_overflow.rb
|
708
|
+
- test/plugin/test_output_as_buffered_retries.rb
|
709
|
+
- test/plugin/test_output_as_buffered_secondary.rb
|
710
|
+
- test/plugin/test_output_as_standard.rb
|
711
|
+
- test/plugin/test_owned_by.rb
|
712
|
+
- test/plugin/test_parser.rb
|
713
|
+
- test/plugin/test_parser_apache.rb
|
714
|
+
- test/plugin/test_parser_apache2.rb
|
715
|
+
- test/plugin/test_parser_apache_error.rb
|
716
|
+
- test/plugin/test_parser_csv.rb
|
717
|
+
- test/plugin/test_parser_json.rb
|
718
|
+
- test/plugin/test_parser_labeled_tsv.rb
|
719
|
+
- test/plugin/test_parser_multiline.rb
|
720
|
+
- test/plugin/test_parser_nginx.rb
|
721
|
+
- test/plugin/test_parser_none.rb
|
722
|
+
- test/plugin/test_parser_regexp.rb
|
723
|
+
- test/plugin/test_parser_syslog.rb
|
724
|
+
- test/plugin/test_parser_tsv.rb
|
725
|
+
- test/plugin/test_storage.rb
|
726
|
+
- test/plugin/test_storage_local.rb
|
458
727
|
- test/plugin/test_string_util.rb
|
728
|
+
- test/plugin_helper/data/cert/cert-key.pem
|
729
|
+
- test/plugin_helper/data/cert/cert-with-no-newline.pem
|
730
|
+
- test/plugin_helper/data/cert/cert.pem
|
731
|
+
- test/plugin_helper/http_server/test_app.rb
|
732
|
+
- test/plugin_helper/http_server/test_route.rb
|
733
|
+
- test/plugin_helper/test_cert_option.rb
|
734
|
+
- test/plugin_helper/test_child_process.rb
|
735
|
+
- test/plugin_helper/test_compat_parameters.rb
|
736
|
+
- test/plugin_helper/test_event_emitter.rb
|
737
|
+
- test/plugin_helper/test_event_loop.rb
|
738
|
+
- test/plugin_helper/test_extract.rb
|
739
|
+
- test/plugin_helper/test_formatter.rb
|
740
|
+
- test/plugin_helper/test_http_server_helper.rb
|
741
|
+
- test/plugin_helper/test_inject.rb
|
742
|
+
- test/plugin_helper/test_parser.rb
|
743
|
+
- test/plugin_helper/test_record_accessor.rb
|
744
|
+
- test/plugin_helper/test_retry_state.rb
|
745
|
+
- test/plugin_helper/test_server.rb
|
746
|
+
- test/plugin_helper/test_storage.rb
|
747
|
+
- test/plugin_helper/test_thread.rb
|
748
|
+
- test/plugin_helper/test_timer.rb
|
459
749
|
- test/scripts/exec_script.rb
|
750
|
+
- test/scripts/fluent/plugin/formatter1/formatter_test1.rb
|
751
|
+
- test/scripts/fluent/plugin/formatter2/formatter_test2.rb
|
460
752
|
- test/scripts/fluent/plugin/formatter_known.rb
|
461
753
|
- test/scripts/fluent/plugin/out_test.rb
|
754
|
+
- test/scripts/fluent/plugin/out_test2.rb
|
462
755
|
- test/scripts/fluent/plugin/parser_known.rb
|
463
|
-
- test/
|
756
|
+
- test/test_clock.rb
|
464
757
|
- test/test_config.rb
|
465
758
|
- test/test_configdsl.rb
|
466
759
|
- test/test_event.rb
|
467
760
|
- test/test_event_router.rb
|
761
|
+
- test/test_event_time.rb
|
468
762
|
- test/test_filter.rb
|
469
763
|
- test/test_formatter.rb
|
470
764
|
- test/test_input.rb
|
@@ -472,11 +766,18 @@ files:
|
|
472
766
|
- test/test_match.rb
|
473
767
|
- test/test_mixin.rb
|
474
768
|
- test/test_output.rb
|
475
|
-
- test/
|
769
|
+
- test/test_plugin.rb
|
476
770
|
- test/test_plugin_classes.rb
|
771
|
+
- test/test_plugin_helper.rb
|
772
|
+
- test/test_plugin_id.rb
|
477
773
|
- test/test_process.rb
|
478
774
|
- test/test_root_agent.rb
|
479
|
-
|
775
|
+
- test/test_supervisor.rb
|
776
|
+
- test/test_test_drivers.rb
|
777
|
+
- test/test_time_formatter.rb
|
778
|
+
- test/test_time_parser.rb
|
779
|
+
- test/test_unique_id.rb
|
780
|
+
homepage: https://www.fluentd.org/
|
480
781
|
licenses:
|
481
782
|
- Apache-2.0
|
482
783
|
metadata: {}
|
@@ -488,29 +789,44 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
488
789
|
requirements:
|
489
790
|
- - ">="
|
490
791
|
- !ruby/object:Gem::Version
|
491
|
-
version: 1
|
792
|
+
version: '2.1'
|
492
793
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
493
794
|
requirements:
|
494
795
|
- - ">="
|
495
796
|
- !ruby/object:Gem::Version
|
496
797
|
version: '0'
|
497
798
|
requirements: []
|
498
|
-
|
499
|
-
rubygems_version: 2.6.11
|
799
|
+
rubygems_version: 3.0.3
|
500
800
|
signing_key:
|
501
801
|
specification_version: 4
|
502
802
|
summary: Fluentd event collector
|
503
803
|
test_files:
|
804
|
+
- test/command/test_binlog_reader.rb
|
805
|
+
- test/command/test_ca_generate.rb
|
806
|
+
- test/command/test_fluentd.rb
|
807
|
+
- test/command/test_plugin_config_formatter.rb
|
808
|
+
- test/command/test_plugin_generator.rb
|
809
|
+
- test/compat/test_calls_super.rb
|
810
|
+
- test/compat/test_parser.rb
|
504
811
|
- test/config/assertions.rb
|
505
812
|
- test/config/test_config_parser.rb
|
506
813
|
- test/config/test_configurable.rb
|
507
814
|
- test/config/test_configure_proxy.rb
|
508
815
|
- test/config/test_dsl.rb
|
816
|
+
- test/config/test_element.rb
|
509
817
|
- test/config/test_literal_parser.rb
|
818
|
+
- test/config/test_plugin_configuration.rb
|
510
819
|
- test/config/test_section.rb
|
511
820
|
- test/config/test_system_config.rb
|
512
821
|
- test/config/test_types.rb
|
822
|
+
- test/counter/test_client.rb
|
823
|
+
- test/counter/test_error.rb
|
824
|
+
- test/counter/test_mutex_hash.rb
|
825
|
+
- test/counter/test_server.rb
|
826
|
+
- test/counter/test_store.rb
|
827
|
+
- test/counter/test_validator.rb
|
513
828
|
- test/helper.rb
|
829
|
+
- test/helpers/fuzzy_assert.rb
|
514
830
|
- test/plugin/data/2010/01/20100102-030405.log
|
515
831
|
- test/plugin/data/2010/01/20100102-030406.log
|
516
832
|
- test/plugin/data/2010/01/20100102.log
|
@@ -518,44 +834,115 @@ test_files:
|
|
518
834
|
- test/plugin/data/log/foo/bar.log
|
519
835
|
- test/plugin/data/log/foo/bar2
|
520
836
|
- test/plugin/data/log/test.log
|
837
|
+
- test/plugin/test_bare_output.rb
|
838
|
+
- test/plugin/test_base.rb
|
521
839
|
- test/plugin/test_buf_file.rb
|
522
840
|
- test/plugin/test_buf_memory.rb
|
841
|
+
- test/plugin/test_buffer.rb
|
842
|
+
- test/plugin/test_buffer_chunk.rb
|
843
|
+
- test/plugin/test_buffer_file_chunk.rb
|
844
|
+
- test/plugin/test_buffer_memory_chunk.rb
|
845
|
+
- test/plugin/test_compressable.rb
|
523
846
|
- test/plugin/test_file_util.rb
|
847
|
+
- test/plugin/test_filter.rb
|
524
848
|
- test/plugin/test_filter_grep.rb
|
525
849
|
- test/plugin/test_filter_parser.rb
|
526
850
|
- test/plugin/test_filter_record_transformer.rb
|
527
851
|
- test/plugin/test_filter_stdout.rb
|
852
|
+
- test/plugin/test_formatter_csv.rb
|
853
|
+
- test/plugin/test_formatter_hash.rb
|
854
|
+
- test/plugin/test_formatter_json.rb
|
855
|
+
- test/plugin/test_formatter_ltsv.rb
|
856
|
+
- test/plugin/test_formatter_msgpack.rb
|
857
|
+
- test/plugin/test_formatter_out_file.rb
|
858
|
+
- test/plugin/test_formatter_single_value.rb
|
859
|
+
- test/plugin/test_formatter_tsv.rb
|
528
860
|
- test/plugin/test_in_debug_agent.rb
|
529
861
|
- test/plugin/test_in_dummy.rb
|
530
862
|
- test/plugin/test_in_exec.rb
|
531
863
|
- test/plugin/test_in_forward.rb
|
532
864
|
- test/plugin/test_in_gc_stat.rb
|
533
865
|
- test/plugin/test_in_http.rb
|
866
|
+
- test/plugin/test_in_monitor_agent.rb
|
534
867
|
- test/plugin/test_in_object_space.rb
|
535
|
-
- test/plugin/test_in_status.rb
|
536
|
-
- test/plugin/test_in_stream.rb
|
537
868
|
- test/plugin/test_in_syslog.rb
|
538
869
|
- test/plugin/test_in_tail.rb
|
539
870
|
- test/plugin/test_in_tcp.rb
|
540
871
|
- test/plugin/test_in_udp.rb
|
872
|
+
- test/plugin/test_in_unix.rb
|
873
|
+
- test/plugin/test_input.rb
|
874
|
+
- test/plugin/test_metadata.rb
|
875
|
+
- test/plugin/test_multi_output.rb
|
541
876
|
- test/plugin/test_out_copy.rb
|
542
877
|
- test/plugin/test_out_exec.rb
|
543
878
|
- test/plugin/test_out_exec_filter.rb
|
544
879
|
- test/plugin/test_out_file.rb
|
545
880
|
- test/plugin/test_out_forward.rb
|
881
|
+
- test/plugin/test_out_null.rb
|
882
|
+
- test/plugin/test_out_relabel.rb
|
546
883
|
- test/plugin/test_out_roundrobin.rb
|
884
|
+
- test/plugin/test_out_secondary_file.rb
|
547
885
|
- test/plugin/test_out_stdout.rb
|
548
886
|
- test/plugin/test_out_stream.rb
|
887
|
+
- test/plugin/test_output.rb
|
888
|
+
- test/plugin/test_output_as_buffered.rb
|
889
|
+
- test/plugin/test_output_as_buffered_backup.rb
|
890
|
+
- test/plugin/test_output_as_buffered_compress.rb
|
891
|
+
- test/plugin/test_output_as_buffered_overflow.rb
|
892
|
+
- test/plugin/test_output_as_buffered_retries.rb
|
893
|
+
- test/plugin/test_output_as_buffered_secondary.rb
|
894
|
+
- test/plugin/test_output_as_standard.rb
|
895
|
+
- test/plugin/test_owned_by.rb
|
896
|
+
- test/plugin/test_parser.rb
|
897
|
+
- test/plugin/test_parser_apache.rb
|
898
|
+
- test/plugin/test_parser_apache2.rb
|
899
|
+
- test/plugin/test_parser_apache_error.rb
|
900
|
+
- test/plugin/test_parser_csv.rb
|
901
|
+
- test/plugin/test_parser_json.rb
|
902
|
+
- test/plugin/test_parser_labeled_tsv.rb
|
903
|
+
- test/plugin/test_parser_multiline.rb
|
904
|
+
- test/plugin/test_parser_nginx.rb
|
905
|
+
- test/plugin/test_parser_none.rb
|
906
|
+
- test/plugin/test_parser_regexp.rb
|
907
|
+
- test/plugin/test_parser_syslog.rb
|
908
|
+
- test/plugin/test_parser_tsv.rb
|
909
|
+
- test/plugin/test_storage.rb
|
910
|
+
- test/plugin/test_storage_local.rb
|
549
911
|
- test/plugin/test_string_util.rb
|
912
|
+
- test/plugin_helper/data/cert/cert-key.pem
|
913
|
+
- test/plugin_helper/data/cert/cert-with-no-newline.pem
|
914
|
+
- test/plugin_helper/data/cert/cert.pem
|
915
|
+
- test/plugin_helper/http_server/test_app.rb
|
916
|
+
- test/plugin_helper/http_server/test_route.rb
|
917
|
+
- test/plugin_helper/test_cert_option.rb
|
918
|
+
- test/plugin_helper/test_child_process.rb
|
919
|
+
- test/plugin_helper/test_compat_parameters.rb
|
920
|
+
- test/plugin_helper/test_event_emitter.rb
|
921
|
+
- test/plugin_helper/test_event_loop.rb
|
922
|
+
- test/plugin_helper/test_extract.rb
|
923
|
+
- test/plugin_helper/test_formatter.rb
|
924
|
+
- test/plugin_helper/test_http_server_helper.rb
|
925
|
+
- test/plugin_helper/test_inject.rb
|
926
|
+
- test/plugin_helper/test_parser.rb
|
927
|
+
- test/plugin_helper/test_record_accessor.rb
|
928
|
+
- test/plugin_helper/test_retry_state.rb
|
929
|
+
- test/plugin_helper/test_server.rb
|
930
|
+
- test/plugin_helper/test_storage.rb
|
931
|
+
- test/plugin_helper/test_thread.rb
|
932
|
+
- test/plugin_helper/test_timer.rb
|
550
933
|
- test/scripts/exec_script.rb
|
934
|
+
- test/scripts/fluent/plugin/formatter1/formatter_test1.rb
|
935
|
+
- test/scripts/fluent/plugin/formatter2/formatter_test2.rb
|
551
936
|
- test/scripts/fluent/plugin/formatter_known.rb
|
552
937
|
- test/scripts/fluent/plugin/out_test.rb
|
938
|
+
- test/scripts/fluent/plugin/out_test2.rb
|
553
939
|
- test/scripts/fluent/plugin/parser_known.rb
|
554
|
-
- test/
|
940
|
+
- test/test_clock.rb
|
555
941
|
- test/test_config.rb
|
556
942
|
- test/test_configdsl.rb
|
557
943
|
- test/test_event.rb
|
558
944
|
- test/test_event_router.rb
|
945
|
+
- test/test_event_time.rb
|
559
946
|
- test/test_filter.rb
|
560
947
|
- test/test_formatter.rb
|
561
948
|
- test/test_input.rb
|
@@ -563,7 +950,14 @@ test_files:
|
|
563
950
|
- test/test_match.rb
|
564
951
|
- test/test_mixin.rb
|
565
952
|
- test/test_output.rb
|
566
|
-
- test/
|
953
|
+
- test/test_plugin.rb
|
567
954
|
- test/test_plugin_classes.rb
|
955
|
+
- test/test_plugin_helper.rb
|
956
|
+
- test/test_plugin_id.rb
|
568
957
|
- test/test_process.rb
|
569
958
|
- test/test_root_agent.rb
|
959
|
+
- test/test_supervisor.rb
|
960
|
+
- test/test_test_drivers.rb
|
961
|
+
- test/test_time_formatter.rb
|
962
|
+
- test/test_time_parser.rb
|
963
|
+
- test/test_unique_id.rb
|